The branch, master has been updated via 989c3d6b0396d48e32ec346c7bc98cf01360a883 (commit) from 4ef900de0380f23eabf121d7182178f6b05e3838 (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 ----------------------------------------------------------------- commit 989c3d6b0396d48e32ec346c7bc98cf01360a883 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri May 31 08:41:43 2013 +0200 Enable keepalive callbacks on open SSH client connections. ----------------------------------------------------------------------- Summary of changes: debian/changelog | 1 + x2go/backends/control/_stdout.py | 2 ++ 2 files changed, 3 insertions(+) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index ebea3ab..7caf2b5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,7 @@ python-x2go (0.4.0.4-0~x2go1) UNRELEASED; urgency=low - Ignore KeyError exceptions in session cache for suddenly removed cache items. Silence/fix some race conditions on connection failures. - Support mounting client-side folders on UNC paths. + - Enable keepalive callbacks on open SSH client connections. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Sun, 21 Apr 2013 23:21:29 +0200 diff --git a/x2go/backends/control/_stdout.py b/x2go/backends/control/_stdout.py index 0050147..4a9fbb8 100644 --- a/x2go/backends/control/_stdout.py +++ b/x2go/backends/control/_stdout.py @@ -877,6 +877,8 @@ class X2GoControlSessionSTDOUT(paramiko.SSHClient): t = self.get_transport() if x2go._paramiko.PARAMIKO_FEATURE['use-compression']: t.use_compression(compress=True) + # enable keep alive callbacks + t.set_keepalive(5) except paramiko.AuthenticationException, e: self.close() 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).