Skip to content

Commit 5bcb333

Browse files
jeffwidmandpkp
authored andcommitted
Update RTD links with https / .io (dpkp#1074)
1 parent 0429699 commit 5bcb333

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Kafka Python client
22
------------------------
33

44
.. image:: https://img.shields.io/badge/kafka-0.10%2C%200.9%2C%200.8.2%2C%200.8.1%2C%200.8-brightgreen.svg
5-
:target: https://kafka-python.readthedocs.org/compatibility.html
5+
:target: https://kafka-python.readthedocs.io/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
@@ -26,7 +26,7 @@ check code (perhaps using zookeeper or consul). For older brokers, you can
2626
achieve something similar by manually assigning different partitions to each
2727
consumer instance with config management tools like chef, ansible, etc. This
2828
approach will work fine, though it does not support rebalancing on failures.
29-
See <http://kafka-python.readthedocs.org/en/master/compatibility.html>
29+
See <https://kafka-python.readthedocs.io/en/master/compatibility.html>
3030
for more details.
3131

3232
Please note that the master branch may contain unreleased features. For release
@@ -41,7 +41,7 @@ KafkaConsumer is a high-level message consumer, intended to operate as similarly
4141
as possible to the official java client. Full support for coordinated
4242
consumer groups requires use of kafka brokers that support the Group APIs: kafka v0.9+.
4343

44-
See <http://kafka-python.readthedocs.org/en/master/apidoc/KafkaConsumer.html>
44+
See <https://kafka-python.readthedocs.io/en/master/apidoc/KafkaConsumer.html>
4545
for API and configuration details.
4646

4747
The consumer iterator returns ConsumerRecords, which are simple namedtuples
@@ -76,7 +76,7 @@ KafkaProducer
7676

7777
KafkaProducer is a high-level, asynchronous message producer. The class is
7878
intended to operate as similarly as possible to the official java client.
79-
See <http://kafka-python.readthedocs.org/en/master/apidoc/KafkaProducer.html>
79+
See <https://kafka-python.readthedocs.io/en/master/apidoc/KafkaProducer.html>
8080
for more details.
8181

8282
>>> from kafka import KafkaProducer
@@ -116,7 +116,7 @@ Compression
116116
kafka-python supports gzip compression/decompression natively. To produce or consume lz4
117117
compressed messages, you should install python-lz4 (pip install lz4).
118118
To enable snappy compression/decompression install python-snappy (also requires snappy library).
119-
See <http://kafka-python.readthedocs.org/en/master/install.html#optional-snappy-install>
119+
See <https://kafka-python.readthedocs.io/en/master/install.html#optional-snappy-install>
120120
for more information.
121121

122122
Protocol
@@ -135,4 +135,4 @@ Low-level
135135

136136
Legacy support is maintained for low-level consumer and producer classes,
137137
SimpleConsumer and SimpleProducer. See
138-
<http://kafka-python.readthedocs.io/en/master/simple.html?highlight=SimpleProducer> for API details.
138+
<https://kafka-python.readthedocs.io/en/master/simple.html?highlight=SimpleProducer> for API details.

0 commit comments

Comments
 (0)