From 305b1f32c74c4f19bfdb80f657a76f1ed977abaa Mon Sep 17 00:00:00 2001 From: patrickhuie19 Date: Tue, 26 Nov 2024 06:07:32 -0500 Subject: [PATCH] removing short circuit in workferForStepRequest if Vertex call fails --- core/services/workflows/engine.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/services/workflows/engine.go b/core/services/workflows/engine.go index 1a366ba3787..fbd25bd8a15 100644 --- a/core/services/workflows/engine.go +++ b/core/services/workflows/engine.go @@ -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))