Skip to content

Commit

Permalink
Merge pull request #442 from patkivikram/vpatki_tombstone
Browse files Browse the repository at this point in the history
Fix for acking tombstone messages
  • Loading branch information
ask authored Oct 8, 2019
2 parents 903b110 + b68175b commit 90ec8d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion faust/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ async def _py_aiter(self) -> AsyncIterator:
# wait for next message
value: Any = None
# we iterate until on_merge gives value.
while value is None:
while value is None and event is None:
await sleep(0, loop=loop)
# get message from channel
# This inlines ThrowableQueue.get for performance:
Expand Down

0 comments on commit 90ec8d5

Please sign in to comment.