diff options
author | kierkegaard13 <kierkegaard13@gmail.com> | 2016-09-15 18:28:59 -0500 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-09-15 16:28:59 -0700 |
commit | 1646edf7ff6430022acf1c41ca32dd88b971c0cb (patch) | |
tree | edf1870d9f974842089a4d61f76b0979f164f82c /kafka/client_async.py | |
parent | 1937ce59b4706b44091bb536a9b810ae657c3225 (diff) | |
download | kafka-python-1646edf7ff6430022acf1c41ca32dd88b971c0cb.tar.gz |
Added ssl_password config option to KafkaProducer class, identical to… (#830)
* Added ssl_password config option to KafkaProducer class, identical to option in KafkaConsumer class
* removed non-ascii characters
* changed - to : in comments
Diffstat (limited to 'kafka/client_async.py')
-rw-r--r-- | kafka/client_async.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kafka/client_async.py b/kafka/client_async.py index ce1d13b..0849c7b 100644 --- a/kafka/client_async.py +++ b/kafka/client_async.py @@ -136,6 +136,8 @@ class KafkaClient(object): 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 |