diff options
author | Dana Powers <dana.powers@gmail.com> | 2016-07-10 21:39:18 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-07-16 14:05:49 -0700 |
commit | abaea8e4b9110c54bf4b2b14a4cdd007b1ce7e29 (patch) | |
tree | 790a87fa980da453615ce1c0337db60deacf1ee7 | |
parent | fc5338bc5521ebed2a81357673f5665ddc000a7d (diff) | |
download | kafka-python-abaea8e4b9110c54bf4b2b14a4cdd007b1ce7e29.tar.gz |
Fixup metrics_sample_window_ms docstring in consumer
-rw-r--r-- | kafka/consumer/group.py | 4 |
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 |