Skip to content

Commit

Permalink
Add rule code to warning (#1572)
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison authored Jul 29, 2024
1 parent dd28ced commit 6bb8f99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/internal_workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const (
defaultCoroutineExitTimeout = 100 * time.Millisecond

panicIllegalAccessCoroutineState = "getState: illegal access from outside of workflow context"
unhandledUpdateWarningMessage = "Workflow finished while update handlers are still running. This may have interrupted work that the" +
unhandledUpdateWarningMessage = "[TMPRL1102] Workflow finished while update handlers are still running. This may have interrupted work that the" +
" update handler was doing, and the client that sent the update will receive a 'workflow execution" +
" already completed' RPCError instead of the update result. You can wait for all update" +
" handlers to complete by using `workflow.Await(ctx, func() bool { return workflow.AllHandlersFinished(ctx) })`. Alternatively, if both you and the clients sending the update" +
Expand Down

0 comments on commit 6bb8f99

Please sign in to comment.