Skip to content

Commit 8a49747

Browse files
fix copy
1 parent ff06bfc commit 8a49747

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storey/flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ async def _do_downstream(self, event, outlets=None, select_outlets: bool = True)
392392
raise ValueError("batching is not supported with streaming")
393393

394394
for i in range(1, len(outlets)):
395-
event_copy = self._deepcopy_event(event, target_obj, is_stream_completion)
395+
event_copy = self._deepcopy_event(event, target_obj, is_stream_completion, is_batched)
396396
tasks.append(asyncio.get_running_loop().create_task(outlets[i]._do_and_recover(event_copy)))
397397
if self.verbose and self.logger:
398398
step_name = self.name

0 commit comments

Comments
 (0)