summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Nagy <mnagy@redhat.com>2008-09-09 15:49:28 +0200
committerMartin Nagy <mnagy@redhat.com>2008-09-11 23:38:41 +0200
commitfa019e932d2557b49e3dc1c29a0704fa8076086b (patch)
treebaa93bcaed18f89ce3fb40d90e05ee4a5b20a92c
parenta9e8a72059ca5a6db13a9835d20f68dd16ce9a7a (diff)
downloadfreeipa-fa019e932d2557b49e3dc1c29a0704fa8076086b.tar.gz
freeipa-fa019e932d2557b49e3dc1c29a0704fa8076086b.tar.xz
freeipa-fa019e932d2557b49e3dc1c29a0704fa8076086b.zip
Ignore GSS exception when iterating through server list. Fixes: 459864
-rw-r--r--ipa-python/rpcclient.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipa-python/rpcclient.py b/ipa-python/rpcclient.py
index 44f020bd9..a80017672 100644
--- a/ipa-python/rpcclient.py
+++ b/ipa-python/rpcclient.py
@@ -62,6 +62,8 @@ class RPCClient:
continue
else:
raise e
+ except GSSError:
+ continue
return xmlrpclib.ServerProxy(self.server_url(self.server), KerbTransport(), verbose=self.verbose)