[X2Go-Commits] python-x2go.git - brokerclient (branch) updated: 0.4.0.8-2-g19da038

X2Go dev team git-admin at x2go.org
Tue Jan 7 16:21:46 CET 2014


The branch, brokerclient has been updated
       via  19da038a1e697321203f2aaf9ac5138270ea296b (commit)
      from  ed9005dad8ef2de3c820aa82d9e61887ddb64b54 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 debian/changelog                 |    4 +++-
 x2go/backends/control/_stdout.py |    5 ++++-
 2 files changed, 7 insertions(+), 2 deletions(-)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 0993fda..1302c02 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 python-x2go (0.4.0.9-0~x2go1) UNRELEASED; urgency=low
 
-  * Continue development...
+  * New upstream version (0.4.0.9):
+    - Agent channels in Paramiko can raise an EOFError if the connection
+      has got disrupted. Ignoring this.
 
  -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Wed, 07 Aug 2013 12:18:46 +0200
 
diff --git a/x2go/backends/control/_stdout.py b/x2go/backends/control/_stdout.py
index 480dcdc..292c50b 100644
--- a/x2go/backends/control/_stdout.py
+++ b/x2go/backends/control/_stdout.py
@@ -1013,7 +1013,10 @@ class X2GoControlSessionSTDOUT(paramiko.SSHClient):
             self.agent_handler.close()
 
         if self.agent_chan is not None:
-            self.agent_chan.close()
+            try:
+                self.agent_chan.close()
+            except EOFError:
+                pass
 
         retval = False
         try:


hooks/post-receive
-- 
python-x2go.git (Python X2Go Client API)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-x2go.git" (Python X2Go Client API).




More information about the x2go-commits mailing list