From da314b1093a124996e1d8d41222b3c9646a17e06 Mon Sep 17 00:00:00 2001 From: Chad Retz Date: Mon, 22 Jan 2024 14:34:44 -0600 Subject: [PATCH] Prefix some errors with rule identifiers --- temporalio/worker/_workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/temporalio/worker/_workflow.py b/temporalio/worker/_workflow.py index 37d5ec16..c91e4e69 100644 --- a/temporalio/worker/_workflow.py +++ b/temporalio/worker/_workflow.py @@ -215,7 +215,7 @@ async def _handle_activation( ) except asyncio.TimeoutError: raise RuntimeError( - f"Potential deadlock detected, workflow didn't yield within {self._deadlock_timeout_seconds} second(s)" + f"[TMPRL1101] Potential deadlock detected, workflow didn't yield within {self._deadlock_timeout_seconds} second(s)" ) except Exception as err: logger.exception(