Skip to content

Commit e824efd

Browse files
authored
Merge pull request #38 from UiPath/fix/debug_resume_input
fix: reset input on breakpoint step
2 parents 633e308 + 7f4d0c3 commit e824efd

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-runtime"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Runtime abstractions and interfaces for building agents and automation scripts in the UiPath ecosystem"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath/runtime/debug/runtime.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ async def _stream_and_debug(
159159

160160
# Tell inner runtime we're resuming
161161
debug_options.resume = True
162+
current_input = (
163+
None # Resume with no new input (very important)
164+
)
162165

163166
except UiPathDebugQuitError:
164167
final_result = UiPathRuntimeResult(

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)