Skip to content

Commit 3442e94

Browse files
committed
Edit message
1 parent bb81c7f commit 3442e94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

temporalio/worker/_workflow_instance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2801,8 +2801,8 @@ def _make_unfinished_signal_handler_message(
28012801
signal handler was doing. You can wait for all update and signal handlers to complete by using
28022802
`await workflow.wait_condition(lambda: workflow.all_handlers_finished())`. Alternatively, if both
28032803
you and the clients sending the signal are okay with interrupting running handlers when the workflow
2804-
finishes, and causing clients to receive errors, then you can disable this warning via the signal
2805-
handler decorator: `@workflow.signal(unfinished_policy=workflow.HandlerUnfinishedPolicy.ABANDON)`.
2804+
finishes, then you can disable this warning via the signal handler decorator:
2805+
`@workflow.signal(unfinished_policy=workflow.HandlerUnfinishedPolicy.ABANDON)`.
28062806
""".replace("\n", " ").strip()
28072807
names = collections.Counter(ex.name for ex in handler_executions)
28082808
return (

0 commit comments

Comments
 (0)