Skip to content

Commit 4c74457

Browse files
committed
Merge upstream fixes to aiven main branch
2 parents 1b95333 + 4d59805 commit 4c74457

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

kafka/admin/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

kafka/producer/kafka.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)