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

Commit

Permalink
Merge pull request #1 from Tim-Thomas/bugfix/fix_cython_stream_event_in
Browse files Browse the repository at this point in the history
bugfix: Fix cython stream_event_in to match python impl
  • Loading branch information
Tim-Thomas authored Feb 15, 2024
2 parents 310eb66 + 1745533 commit 36f171a
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 36f171a

Please sign in to comment.