diff options
author | Dana Powers <dana.powers@gmail.com> | 2016-11-14 11:01:34 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-14 11:01:34 -0800 |
commit | 8ac79fbe3dd1b28d052551a5fa3e6acfdc1ba457 (patch) | |
tree | bc430da90685195db6532311f37781ac734479e5 /kafka/consumer/group.py | |
parent | 77591afa789a4752f4d385228bea980f448f6a08 (diff) | |
parent | cd74c1fe4053385151175b5100cb0a0d43bc31f6 (diff) | |
download | kafka-python-8ac79fbe3dd1b28d052551a5fa3e6acfdc1ba457.tar.gz |
Fix typos (#874)
Diffstat (limited to 'kafka/consumer/group.py')
-rw-r--r-- | kafka/consumer/group.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kafka/consumer/group.py b/kafka/consumer/group.py index 3ab68a7..5550d54 100644 --- a/kafka/consumer/group.py +++ b/kafka/consumer/group.py @@ -84,7 +84,7 @@ class KafkaConsumer(six.Iterator): auto_offset_reset (str): A policy for resetting offsets on OffsetOutOfRange errors: 'earliest' will move to the oldest available message, 'latest' will move to the most recent. Any - ofther value will raise the exception. Default: 'latest'. + other value will raise the exception. Default: 'latest'. enable_auto_commit (bool): If true the consumer's offset will be periodically committed in the background. Default: True. auto_commit_interval_ms (int): milliseconds between automatic @@ -194,7 +194,7 @@ class KafkaConsumer(six.Iterator): sasl_plain_username (str): username for sasl PLAIN authentication. Default: None sasl_plain_password (str): password for sasl PLAIN authentication. - Defualt: None + Default: None Note: Configuration parameters are described in more detail at @@ -596,7 +596,7 @@ class KafkaConsumer(six.Iterator): one greater than the newest available message. Highwater offsets are returned in FetchResponse messages, so will - not be available if not FetchRequests have been sent for this partition + not be available if no FetchRequests have been sent for this partition yet. Arguments: |