We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46764ed commit 0dfe310Copy full SHA for 0dfe310
src/uipath/runtime/debug/runtime.py
@@ -121,6 +121,10 @@ async def _stream_and_debug(
121
logger.warning(
122
"Initial resume wait timed out after 60s, assuming debug bridge disconnected"
123
)
124
+ yield UiPathRuntimeResult(status=UiPathRuntimeStatus.FAULTED)
125
+ return
126
+ except UiPathDebugQuitError:
127
+ logger.info("Debug session quit by user before execution started")
128
yield UiPathRuntimeResult(status=UiPathRuntimeStatus.SUCCESSFUL)
129
return
130
0 commit comments