Skip to content

Commit bde8639

Browse files
committed
Fix error when workflow/activity not found
1 parent 6871a90 commit bde8639

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/workflow/executor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func (e *executor) ExecuteTask(ctx context.Context, t *task.Workflow) (*Executio
127127
"instance_id", t.WorkflowInstance.InstanceID,
128128
"executed", len(executedEvents),
129129
"last_sequence_id", e.lastSequenceID,
130-
"completed", e.workflow.Completed(),
130+
"completed", completed,
131131
)
132132

133133
return &ExecutionResult{

0 commit comments

Comments
 (0)