summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Powers <dana.powers@gmail.com>2016-07-10 21:39:18 -0700
committerDana Powers <dana.powers@gmail.com>2016-07-16 14:05:49 -0700
commitabaea8e4b9110c54bf4b2b14a4cdd007b1ce7e29 (patch)
tree790a87fa980da453615ce1c0337db60deacf1ee7
parentfc5338bc5521ebed2a81357673f5665ddc000a7d (diff)
downloadkafka-python-abaea8e4b9110c54bf4b2b14a4cdd007b1ce7e29.tar.gz
Fixup metrics_sample_window_ms docstring in consumer
-rw-r--r--kafka/consumer/group.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kafka/consumer/group.py b/kafka/consumer/group.py
index 8fa43bc..5a3b117 100644
--- a/kafka/consumer/group.py
+++ b/kafka/consumer/group.py
@@ -171,8 +171,8 @@ class KafkaConsumer(six.Iterator):
in classes that will be notified of new metric creation. Default: []
metrics_num_samples (int): The number of samples maintained to compute
metrics. Default: 2
- metrics_sample_window_ms (int): The number of samples maintained to
- compute metrics. Default: 30000
+ metrics_sample_window_ms (int): The maximum age in milliseconds of
+ samples used to compute metrics. Default: 30000
Note:
Configuration parameters are described in more detail at