The branch, release/0.1.1.x has been updated via f0c99e80ca783ea5c43ebf1d7651a2335a07e5a6 (commit) from e6ac02a48a23270d8bf427e5bde3ae1e1a070d5c (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 f0c99e80ca783ea5c43ebf1d7651a2335a07e5a6 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Nov 1 14:23:52 2011 +0100 Ignore session registry exceptions for profiles that just got disconnected. ----------------------------------------------------------------------- Summary of changes: debian/changelog | 3 ++- x2go/client.py | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) The diff of changes is: diff --git a/debian/changelog b/debian/changelog index 66723e8..ddde1bf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ python-x2go (0.1.1.9-0-x2go1) UNRELEASED; urgency=low - * Continue development... + * New upstream version (0.1.1.9), bugfix release for 0.1.1.x series: + - Ignore session registry exceptions for profiles that just got disconnected. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Wed, 12 Oct 2011 10:54:23 +0200 diff --git a/x2go/client.py b/x2go/client.py index 2af4230..da34e9b 100644 --- a/x2go/client.py +++ b/x2go/client.py @@ -2517,5 +2517,8 @@ class X2goClient(object): """ for profile_name in self.client_connected_profiles(return_profile_names=True): - self.__register_available_server_sessions_by_profile_name(profile_name) + try: + self.__register_available_server_sessions_by_profile_name(profile_name) + except X2goSessionRegistryException: + pass __register_available_server_sessions_all_profiles = register_available_server_sessions_all_profiles 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).