Skip to content

Commit 4a9a421

Browse files
committed
fix: increase wait timeout for session stop
1 parent 9dd7e98 commit 4a9a421

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-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-mcp"
3-
version = "0.0.63"
3+
version = "0.0.64"
44
description = "UiPath MCP SDK"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath_mcp/_cli/_runtime/_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async def stop(self) -> None:
8080
if self._run_task and not self._run_task.done():
8181
self._run_task.cancel()
8282
try:
83-
await asyncio.wait_for(asyncio.shield(self._run_task), timeout=2.0)
83+
await asyncio.wait_for(asyncio.shield(self._run_task), timeout=3.0)
8484
except (asyncio.TimeoutError, asyncio.CancelledError):
8585
pass
8686
except Exception as e:

0 commit comments

Comments
 (0)