Skip to content

Commit 4f866db

Browse files
committed
Improve formatting
1 parent 3442e94 commit 4f866db

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
@@ -2778,7 +2778,7 @@ def _make_unfinished_update_handler_message(
27782778
handler_executions: List[HandlerExecution],
27792779
) -> str:
27802780
message = """
2781-
TMPRL1102 Workflow finished while update handlers are still running. This may have interrupted work that the
2781+
[TMPRL1102] Workflow finished while update handlers are still running. This may have interrupted work that the
27822782
update handler was doing, and the client that sent the update will receive a 'workflow execution
27832783
already completed' RPCError instead of the update result. You can wait for all update and signal
27842784
handlers to complete by using `await workflow.wait_condition(lambda:
@@ -2797,7 +2797,7 @@ def _make_unfinished_signal_handler_message(
27972797
handler_executions: List[HandlerExecution],
27982798
) -> str:
27992799
message = """
2800-
TMPRL1102 Workflow finished while signal handlers are still running. This may have interrupted work that the
2800+
[TMPRL1102] Workflow finished while signal handlers are still running. This may have interrupted work that the
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

0 commit comments

Comments
 (0)