File tree 2 files changed +1
-5
lines changed
2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -813,7 +813,7 @@ def _sasl_authenticate(self, future):
813
813
log .info ('%s: %s' , self , self ._sasl_mechanism .auth_details ())
814
814
return future .success (True )
815
815
else :
816
- return future .failure (Errors .AuthenticationFailedError ('Failed to authenticate via SASL %s' % self .config ['sasl_mechanism' ]))
816
+ return future .failure (Errors .SaslAuthenticationFailedError ('Failed to authenticate via SASL %s' % self .config ['sasl_mechanism' ]))
817
817
818
818
def blacked_out (self ):
819
819
"""
Original file line number Diff line number Diff line change @@ -85,10 +85,6 @@ class AuthenticationMethodNotSupported(KafkaError):
85
85
pass
86
86
87
87
88
- class AuthenticationFailedError (KafkaError ):
89
- retriable = False
90
-
91
-
92
88
class BrokerResponseError (KafkaError ):
93
89
errno = None
94
90
message = None
You can’t perform that action at this time.
0 commit comments