Ignore GSS exception when iterating through server list. Fixes: 459864

This commit is contained in:
Martin Nagy 2008-09-09 15:49:28 +02:00
parent a9e8a72059
commit fa019e932d

View File

@ -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)