Skip to content

Commit

Permalink
Edit message
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison committed Aug 19, 2024
1 parent bb81c7f commit 3442e94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions temporalio/worker/_workflow_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -2801,8 +2801,8 @@ def _make_unfinished_signal_handler_message(
signal handler was doing. You can wait for all update and signal handlers to complete by using
`await workflow.wait_condition(lambda: workflow.all_handlers_finished())`. Alternatively, if both
you and the clients sending the signal are okay with interrupting running handlers when the workflow
finishes, and causing clients to receive errors, then you can disable this warning via the signal
handler decorator: `@workflow.signal(unfinished_policy=workflow.HandlerUnfinishedPolicy.ABANDON)`.
finishes, then you can disable this warning via the signal handler decorator:
`@workflow.signal(unfinished_policy=workflow.HandlerUnfinishedPolicy.ABANDON)`.
""".replace("\n", " ").strip()
names = collections.Counter(ex.name for ex in handler_executions)
return (
Expand Down

0 comments on commit 3442e94

Please sign in to comment.