diff options
author | Dana Powers <dana.powers@gmail.com> | 2015-03-30 17:42:51 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2015-03-30 17:42:51 -0700 |
commit | 9fd08119170b64c56ea024d12ef6b0e6482d778b (patch) | |
tree | 5fb240b11a7f9e7a5ca9d2c348556967b0f94b0c /kafka/consumer/simple.py | |
parent | 6fc6856746c9e27d4c96b47b1941b6ebbabcb33b (diff) | |
parent | 1d252bfc20c8b1058dc93a495c3bdb0f4ccdf590 (diff) | |
download | kafka-python-9fd08119170b64c56ea024d12ef6b0e6482d778b.tar.gz |
Merge pull request #356 from dpkp/always_fetch_offsets
fetch commit offsets in base consumer unless group is None
Diffstat (limited to 'kafka/consumer/simple.py')
-rw-r--r-- | kafka/consumer/simple.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kafka/consumer/simple.py b/kafka/consumer/simple.py index b50de61..ae00dab 100644 --- a/kafka/consumer/simple.py +++ b/kafka/consumer/simple.py @@ -73,6 +73,8 @@ class SimpleConsumer(Consumer): Arguments: client: a connected KafkaClient group: a name for this consumer, used for offset storage and must be unique + If you are connecting to a server that does not support offset + commit/fetch (any prior to 0.8.1.1), then you *must* set this to None topic: the topic to consume Keyword Arguments: |