File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ kafka-python
22############
33
44.. image :: https://img.shields.io/badge/kafka-2.6%2C%202.5%2C%202.4%2C%202.3%2C%202.2%2C%202.1%2C%202.0%2C%201.1%2C%201.0%2C%200.11%2C%200.10%2C%200.9%2C%200.8-brightgreen.svg
5- :target: https://kafka-python.readthedocs.io/compatibility.html
5+ :target: https://kafka-python.readthedocs.io/en/master/ compatibility.html
66.. image :: https://img.shields.io/pypi/pyversions/kafka-python.svg
77 :target: https://pypi.python.org/pypi/kafka-python
88.. image :: https://coveralls.io/repos/dpkp/kafka-python/badge.svg?branch=master&service=github
Original file line number Diff line number Diff line change @@ -1246,7 +1246,7 @@ def _list_consumer_group_offsets_process_response(self, response):
12461246
12471247 :param response: an OffsetFetchResponse.
12481248 :return: A dictionary composed of TopicPartition keys and
1249- OffsetAndMetada values.
1249+ OffsetAndMetadata values.
12501250 """
12511251 if response .API_VERSION <= 3 :
12521252
@@ -1260,7 +1260,7 @@ def _list_consumer_group_offsets_process_response(self, response):
12601260 .format (response ))
12611261
12621262 # transform response into a dictionary with TopicPartition keys and
1263- # OffsetAndMetada values--this is what the Java AdminClient returns
1263+ # OffsetAndMetadata values--this is what the Java AdminClient returns
12641264 offsets = {}
12651265 for topic , partitions in response .topics :
12661266 for partition , offset , metadata , error_code in partitions :
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ class KafkaProducer(object):
233233 should verify that the certificate matches the brokers hostname.
234234 default: true.
235235 ssl_cafile (str): optional filename of ca file to use in certificate
236- veriication . default: none.
236+ verification . default: none.
237237 ssl_certfile (str): optional filename of file in pem format containing
238238 the client certificate, as well as any ca certificates needed to
239239 establish the certificate's authenticity. default: none.
@@ -285,7 +285,7 @@ class KafkaProducer(object):
285285
286286 Note:
287287 Configuration parameters are described in more detail at
288- https://kafka.apache.org/0100/configuration.html #producerconfigs
288+ https://kafka.apache.org/0100/documentation/ #producerconfigs
289289 """
290290 DEFAULT_CONFIG = {
291291 'bootstrap_servers' : 'localhost' ,
You can’t perform that action at this time.
0 commit comments