Skip to content

Commit b8ba780

Browse files
authored
Merge pull request #36 from UiPath/fix/copy_input
fix: preserve initial input
2 parents 5858f19 + 26094b1 commit b8ba780

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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-dev"
3-
version = "0.0.17"
3+
version = "0.0.18"
44
description = "UiPath Developer Console"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath/dev/services/run_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ async def execute(self, run: ExecutionRun) -> None:
9797
execution_options.resume = True
9898
self._add_info_log(run, f"Resuming execution: {run.entrypoint}")
9999
else:
100-
execution_input = run.input_data
100+
execution_input = run.input_data.copy()
101101
self._add_info_log(run, f"Starting execution: {run.entrypoint}")
102102

103103
run.status = "running"

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)