Skip to content

Commit

Permalink
bugfix: Fix cython stream_event_in to match python impl (#608)
Browse files Browse the repository at this point in the history
Co-authored-by: William Barnhart <[email protected]>
  • Loading branch information
Tim-Thomas and wbarnha authored Feb 16, 2024
1 parent 6d248bf commit ebf66ae
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 ebf66ae

Please sign in to comment.