This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository python-x2go. from 03ecca6 Fix catching control session exceptions in X2GoSession class. new c6b4f2a fix changelog new b7b43de Catch EOFError in x2go_forward_tunnel_handle(). The 2 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: debian/changelog | 4 +++- x2go/forward.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository python-x2go. commit c6b4f2ac76215ae333ec22cbf81f2c7dd342f3e9 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Dec 9 09:42:06 2014 +0100 fix changelog --- debian/changelog | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index ebd659a..0ff8131 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ python-x2go (0.5.0.3-0x2go1) UNRELEASED; urgency=medium - * Fix catching control session exceptions in X2GoSession class. + * New upstream version (0.5.0.3): + - Fix catching control session exceptions in X2GoSession class. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Thu, 27 Nov 2014 13:15:44 +0100 -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository python-x2go. commit b7b43de1f7b7059a76ef3dc4f6373b7a633d9a0e Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Dec 9 09:42:52 2014 +0100 Catch EOFError in x2go_forward_tunnel_handle(). --- debian/changelog | 1 + x2go/forward.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 0ff8131..d197cfc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ python-x2go (0.5.0.3-0x2go1) UNRELEASED; urgency=medium * New upstream version (0.5.0.3): - Fix catching control session exceptions in X2GoSession class. + - Catch EOFError in x2go_forward_tunnel_handle(). -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Thu, 27 Nov 2014 13:15:44 +0100 diff --git a/x2go/forward.py b/x2go/forward.py index b633a50..c633661 100644 --- a/x2go/forward.py +++ b/x2go/forward.py @@ -167,7 +167,7 @@ class X2GoFwServer(StreamServer): fw_socket.send(data) self.close_channel() self.close_socket() - except socket.error: + except (socket.error, EOFError): pass self.logger('Tunnel closed from %r' % (chan_peername,), -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/python-x2go.git