Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
longquanzheng committed Oct 23, 2023
1 parent 7d78fac commit 23b57d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/interpreter/workflowImpl.go
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ func executeStateDecide(
})
if err != nil {
// for any reasons this fail, just panic and the workflow task will retry
panic(fmt.Sprintf("failed to signal on completion %w", err))
panic(fmt.Errorf("failed to signal on completion %w", err))
}
}
if err != nil {
Expand Down

0 comments on commit 23b57d1

Please sign in to comment.