summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Bouchare <david.bouchare@datadoghq.com>2019-10-03 22:35:18 +0200
committerJeff Widman <jeff@jeffwidman.com>2019-10-03 13:35:18 -0700
commitf1cda98e0b427116d5eb901bce2d697b3f037e78 (patch)
treeac82172c5e8b8f1ce855e270125a7dce1a450d2e
parent0552b04326c73be29f209c12920ef4cbaceb9818 (diff)
downloadkafka-python-f1cda98e0b427116d5eb901bce2d697b3f037e78.tar.gz
Update docstring to match conn.py's (#1921)
-rw-r--r--kafka/client_async.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/kafka/client_async.py b/kafka/client_async.py
index 3ec4ead..14677d0 100644
--- a/kafka/client_async.py
+++ b/kafka/client_async.py
@@ -102,7 +102,8 @@ class KafkaClient(object):
partition leadership changes to proactively discover any new
brokers or partitions. Default: 300000
security_protocol (str): Protocol used to communicate with brokers.
- Valid values are: PLAINTEXT, SSL. Default: PLAINTEXT.
+ Valid values are: PLAINTEXT, SSL, SASL_PLAINTEXT, SASL_SSL.
+ Default: PLAINTEXT.
ssl_context (ssl.SSLContext): Pre-configured SSLContext for wrapping
socket connections. If provided, all other ssl_* configurations
will be ignored. Default: None.