diff options
author | Ulrik Johansson <ulrik.johansson@gmail.com> | 2019-09-28 23:57:05 +0200 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2019-09-28 14:57:05 -0700 |
commit | 76ad6629350f20acfd6038c1e444a89bcd255f89 (patch) | |
tree | 00439631523c0c7b5df835f33b92f0f8d95f5812 /kafka/errors.py | |
parent | 5e4d1516e0d903e411c71474cc5ba9e9b009cd8c (diff) | |
download | kafka-python-76ad6629350f20acfd6038c1e444a89bcd255f89.tar.gz |
Add ACL api to KafkaAdminClient (#1833)
Diffstat (limited to 'kafka/errors.py')
-rw-r--r-- | kafka/errors.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kafka/errors.py b/kafka/errors.py index f13f978..abef2c5 100644 --- a/kafka/errors.py +++ b/kafka/errors.py @@ -443,6 +443,12 @@ class PolicyViolationError(BrokerResponseError): description = 'Request parameters do not satisfy the configured policy.' +class SecurityDisabledError(BrokerResponseError): + errno = 54 + message = 'SECURITY_DISABLED' + description = 'Security features are disabled.' + + class KafkaUnavailableError(KafkaError): pass |