[X2go-Commits] python-x2go.git - master (branch) updated: 0.1.0.3-9-gfa0d562
X2go dev team
git-admin at x2go.org
Mon Jun 20 12:48:37 CEST 2011
The branch, master has been updated
via fa0d562da07ec11e299edc3b98a56121b4e0c25e (commit)
from 27d7b87c686844af7b63b6045aff296a9b8da04d (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 fa0d562da07ec11e299edc3b98a56121b4e0c25e
Author: Mike Gabriel <mike.gabriel at das-netzwerkteam.de>
Date: Mon Jun 20 12:48:20 2011 +0200
not closing ssh proxy on AuthenticationExceptions
-----------------------------------------------------------------------
Summary of changes:
x2go/backends/control/_stdout.py | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
The diff of changes is:
diff --git a/x2go/backends/control/_stdout.py b/x2go/backends/control/_stdout.py
index 7e6245e..2c94ecc 100644
--- a/x2go/backends/control/_stdout.py
+++ b/x2go/backends/control/_stdout.py
@@ -390,7 +390,6 @@ class X2goControlSessionSTDOUT(paramiko.SSHClient):
except paramiko.AuthenticationException, e:
- self.close()
if password:
self.logger('next auth mechanism we\'ll try is keyboard-interactive authentication', loglevel=log.loglevel_DEBUG)
try:
@@ -398,8 +397,6 @@ class X2goControlSessionSTDOUT(paramiko.SSHClient):
timeout=timeout, allow_agent=allow_agent,
look_for_keys=look_for_keys)
except paramiko.AuthenticationException, e:
- if self.sshproxy_session:
- self.sshproxy_session.stop_thread()
raise e
except:
if self.sshproxy_session:
@@ -428,8 +425,6 @@ class X2goControlSessionSTDOUT(paramiko.SSHClient):
paramiko.SSHClient.connect(self, hostname, port=port, username=username, password=password,
timeout=timeout, allow_agent=allow_agent, look_for_keys=look_for_keys)
except paramiko.AuthenticationException, e:
- if self.sshproxy_session:
- self.sshproxy_session.stop_thread()
raise e
except:
if self.sshproxy_session:
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