Skip to content

Commit

Permalink
removing short circuit in workferForStepRequest if Vertex call fails
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhuie19 committed Nov 26, 2024
1 parent 8b5a9c2 commit 305b1f3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion core/services/workflows/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,6 @@ func (e *Engine) workerForStepRequest(ctx context.Context, msg stepRequest) {
curStep, verr := e.workflow.Vertex(msg.stepRef)
if verr != nil {
l.Errorf("failed to resolve step in workflow; error %v", err)
return
}
e.metrics.with(platform.KeyCapabilityID, curStep.ID).updateWorkflowStepDurationHistogram(ctx, int64(stepExecutionDuration))

Expand Down

0 comments on commit 305b1f3

Please sign in to comment.