Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
add param to rdkafka simpleconsumer
Browse files Browse the repository at this point in the history
  • Loading branch information
emmettbutler committed Mar 8, 2018
1 parent c198907 commit 9268476
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pykafka/rdkafka/simple_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def __init__(self,
compacted_topic=False,
generation_id=-1,
consumer_id=b'',
deserializer=None):
deserializer=None,
reset_offset_on_fetch=True):
callargs = {k: v for k, v in vars().items()
if k not in ("self", "__class__")}
self._rdk_consumer = None
Expand Down

0 comments on commit 9268476

Please sign in to comment.