summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Taylor <github@samueltaylor.org>2016-07-26 10:08:29 -0500
committerDana Powers <dana.powers@gmail.com>2016-07-26 08:08:29 -0700
commit64d3607b8796f6ef1cf71fbecfc6887b3b15c700 (patch)
tree4596cff8b02779a1bd17e06d8c88ae5d85f43449
parentbdb0559b381c635c5d364b10a5a59cb53de2649c (diff)
downloadkafka-python-64d3607b8796f6ef1cf71fbecfc6887b3b15c700.tar.gz
Document the ssl_password config option (#780)
PR #750 added the code for passing along a password, but not any documentation on it
-rw-r--r--kafka/consumer/group.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/kafka/consumer/group.py b/kafka/consumer/group.py
index bc59282..ed28573 100644
--- a/kafka/consumer/group.py
+++ b/kafka/consumer/group.py
@@ -145,6 +145,8 @@ class KafkaConsumer(six.Iterator):
establish the certificate's authenticity. default: none.
ssl_keyfile (str): optional filename containing the client private key.
default: none.
+ ssl_password (str): optional password to be used when loading the
+ certificate chain. default: None.
ssl_crlfile (str): optional filename containing the CRL to check for
certificate expiration. By default, no CRL check is done. When
providing a file, only the leaf certificate will be checked against