Skip to content

Commit

Permalink
Prefix some errors with rule identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
cretz committed Jan 22, 2024
1 parent 4904054 commit da314b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion temporalio/worker/_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit da314b1

Please sign in to comment.