Skip to content

Commit

Permalink
fix: fix he pipeline output streaming was not functioning properly (#723
Browse files Browse the repository at this point in the history
)

Because

- The pipeline output streaming was not functioning properly.

This commit

- Fixes the bug.
  • Loading branch information
donch1989 authored Oct 8, 2024
1 parent f1cdbae commit 1e3bfb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/worker/workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ func (w *worker) ComponentActivity(ctx context.Context, param *ComponentActivity
for idx, originalIdx := range conditionMap {
jobs[idx] = &componentbase.Job{
Input: NewInputReader(wfm, param.ID, originalIdx),
Output: NewOutputWriter(wfm, param.ID, originalIdx, param.Streaming),
Output: NewOutputWriter(wfm, param.ID, originalIdx, wfm.IsStreaming()),
Error: NewErrorHandler(wfm, param.ID, originalIdx),
}
}
Expand Down

0 comments on commit 1e3bfb4

Please sign in to comment.