fix traceback with kerberos GSSError handling.
This commit is contained in:
parent
fc64374d81
commit
5e44243758
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ class SASL(PlugIn):
|
||||||
self.startsasl = SASL_IN_PROCESS
|
self.startsasl = SASL_IN_PROCESS
|
||||||
self._owner.send(str(node))
|
self._owner.send(str(node))
|
||||||
raise NodeProcessed
|
raise NodeProcessed
|
||||||
except GSSError, e:
|
except kerberos.GSSError, e:
|
||||||
log.info('GSSAPI authentication failed: %s' % str(e))
|
log.info('GSSAPI authentication failed: %s' % str(e))
|
||||||
if 'DIGEST-MD5' in self.mecs:
|
if 'DIGEST-MD5' in self.mecs:
|
||||||
self.mecs.remove('DIGEST-MD5')
|
self.mecs.remove('DIGEST-MD5')
|
||||||
|
|
Loading…
Add table
Reference in a new issue