Skip to content

Commit

Permalink
fix: fix missing error return in pipeline trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
donch1989 committed Mar 11, 2024
1 parent ce720d5 commit a743ab1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/worker/workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ func (w *worker) TriggerPipelineWorkflow(ctx workflow.Context, param *TriggerPip
})
if err != nil {
w.writeErrorDataPoint(sCtx, err, span, startTime, &dataPoint)
return nil, err
}

pipelineOutputs := []*structpb.Struct{}
Expand Down

0 comments on commit a743ab1

Please sign in to comment.