Skip to content
This repository has been archived by the owner on Oct 2, 2024. It is now read-only.

Commit

Permalink
bugfix: Fix cython stream_event_in to match python impl
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim-Thomas committed Feb 15, 2024
1 parent 310eb66 commit 1745533
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions faust/_cython/streams.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ cdef class StreamIterator:
self.add_unacked(message)
self.on_message_in(tp, offset, message)

stream_state = self.on_stream_event_in(
tp, offset, self.stream, event)
stream_state = self.on_stream_event_in(
tp, offset, self.stream, event)
self.stream._set_current_event(event)
return (event, event.value, stream_state)
else:
Expand Down

0 comments on commit 1745533

Please sign in to comment.