We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46764ed + 0dfe310 commit f7ea61bCopy full SHA for f7ea61b
1 file changed
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