This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goserver. from f2ca618 x2golistsessions(_root): Only update session state in session DB if x2goagent's state file really exists. This addresses a problem that occurs when x2golistsessions gets called via an x2gobroker-agent. The x2golistsessions script may show session states (--all-servers) of sessions on other servers that have session states files on their remote /tmp dirs. These files are not accessible for that x2golistsessions script and should simply be ignored. new b3401d3 fix for last commit (export has_agent_state_file, thanks for nanook for bringing up this issue on x2go-user ML) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: X2Go/Server/Agent.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goserver. commit b3401d37d05e7b649a3a59836634fd91c6f48430 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sat Oct 18 14:55:41 2014 +0200 fix for last commit (export has_agent_state_file, thanks for nanook for bringing up this issue on x2go-user ML) --- X2Go/Server/Agent.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/X2Go/Server/Agent.pm b/X2Go/Server/Agent.pm index 42d753e..5a71ca8 100644 --- a/X2Go/Server/Agent.pm +++ b/X2Go/Server/Agent.pm @@ -42,7 +42,7 @@ load_module $agent_module; use base 'Exporter'; -our @EXPORT=( 'session_has_terminated', 'session_is_running', 'session_is_suspended' , 'get_agent_state'); +our @EXPORT=( 'session_has_terminated', 'session_is_running', 'session_is_suspended' , 'has_agent_state_file', 'get_agent_state' ); @@ -60,6 +60,10 @@ sub session_is_suspended { return $agent_module->session_is_suspended(@_); } +sub has_agent_state_file { + return $agent_module->has_agent_state_file(@_); +} + sub get_agent_state { return $agent_module->get_agent_state(@_); } -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git