From eb03770789d2f2349560a38261e830dde119fbbb Mon Sep 17 00:00:00 2001 From: Samuel Taylor Date: Mon, 25 Jul 2016 12:58:12 -0500 Subject: [PATCH] Document the ssl_password config option PR #750 added the code for passing along a password, but not any documentation on it --- kafka/consumer/group.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kafka/consumer/group.py b/kafka/consumer/group.py index bc5928244..ed2857399 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