diff options
author | Jeff Widman <jeff@jeffwidman.com> | 2019-05-23 23:16:55 -0700 |
---|---|---|
committer | Jeff Widman <jeff@jeffwidman.com> | 2019-05-24 00:15:58 -0700 |
commit | cee4d17df7858439e0dbdf3914ca0107e080af7d (patch) | |
tree | de3ee0c95764f73555127225671bd2cbabc5f219 /kafka/consumer/group.py | |
parent | 1a0f2973190e2bb60909bfcd28e5ad8e732e918e (diff) | |
download | kafka-python-cee4d17df7858439e0dbdf3914ca0107e080af7d.tar.gz |
Update docs for api_version_auto_timeout_ms (#1812)
The docs for `api_version_auto_timeout_ms` mention setting
`api_version='auto'` but that value has been deprecated for years in
favor of `api_version=None`.
Updating the docs for now, and will remove support for `'auto'` in next
major version bump.
Diffstat (limited to 'kafka/consumer/group.py')
-rw-r--r-- | kafka/consumer/group.py | 2 |
1 files changed, 1 insertions, 1 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 |