summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Widman <jeff@jeffwidman.com>2017-03-08 22:52:08 -0800
committerDana Powers <dana.powers@gmail.com>2017-03-08 22:52:08 -0800
commit05ad46aaf25c97270c4748dd4f8236f4ceb7e021 (patch)
tree2219541075163e2687f4be44a44fb73a44f1db74
parent1813d7d21ed1d9e76d9078a2c70a7657e8c18d07 (diff)
downloadkafka-python-05ad46aaf25c97270c4748dd4f8236f4ceb7e021.tar.gz
A few Sphinx documentation updates (#1019)
-rw-r--r--kafka/consumer/group.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/kafka/consumer/group.py b/kafka/consumer/group.py
index 5063579..f2b1699 100644
--- a/kafka/consumer/group.py
+++ b/kafka/consumer/group.py
@@ -213,7 +213,7 @@ class KafkaConsumer(six.Iterator):
Note:
Configuration parameters are described in more detail at
- https://kafka.apache.org/0100/configuration.html#newconsumerconfigs
+ https://kafka.apache.org/documentation/#newconsumerconfigs
"""
DEFAULT_CONFIG = {
'bootstrap_servers': 'localhost',
@@ -522,8 +522,8 @@ class KafkaConsumer(six.Iterator):
Records are fetched and returned in batches by topic-partition.
On each poll, consumer will try to use the last consumed offset as the
starting offset and fetch sequentially. The last consumed offset can be
- manually set through seek(partition, offset) or automatically set as
- the last committed offset for the subscribed list of partitions.
+ manually set through :meth:`~kafka.KafkaConsumer.seek` or automatically
+ set as the last committed offset for the subscribed list of partitions.
Incompatible with iterator interface -- use one or the other, not both.