summaryrefslogtreecommitdiff
path: root/kafka
diff options
context:
space:
mode:
Diffstat (limited to 'kafka')
-rw-r--r--kafka/consumer/group.py2
-rw-r--r--kafka/producer/kafka.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/kafka/consumer/group.py b/kafka/consumer/group.py
index 6c12767..d504c09 100644
--- a/kafka/consumer/group.py
+++ b/kafka/consumer/group.py
@@ -209,7 +209,7 @@ class KafkaConsumer(six.Iterator):
Default: None
api_version_auto_timeout_ms (int): number of milliseconds to throw a
timeout exception from the constructor when checking the broker
- api version. Only applies if api_version set to 'auto'
+ api version. Only applies if api_version set to None.
connections_max_idle_ms: Close idle connections after the number of
milliseconds specified by this config. The broker closes idle
connections after connections.max.idle.ms, so this avoids hitting
diff --git a/kafka/producer/kafka.py b/kafka/producer/kafka.py
index 2a306e0..f6a0603 100644
--- a/kafka/producer/kafka.py
+++ b/kafka/producer/kafka.py
@@ -255,7 +255,7 @@ class KafkaProducer(object):
various APIs. Example: (0, 10, 2). Default: None
api_version_auto_timeout_ms (int): number of milliseconds to throw a
timeout exception from the constructor when checking the broker
- api version. Only applies if api_version set to 'auto'
+ api version. Only applies if api_version set to None.
metric_reporters (list): A list of classes to use as metrics reporters.
Implementing the AbstractMetricsReporter interface allows plugging
in classes that will be notified of new metric creation. Default: []