We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dd7e98 commit 4a9a421Copy full SHA for 4a9a421
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "uipath-mcp"
3
-version = "0.0.63"
+version = "0.0.64"
4
description = "UiPath MCP SDK"
5
readme = { file = "README.md", content-type = "text/markdown" }
6
requires-python = ">=3.10"
src/uipath_mcp/_cli/_runtime/_session.py
@@ -80,7 +80,7 @@ async def stop(self) -> None:
80
if self._run_task and not self._run_task.done():
81
self._run_task.cancel()
82
try:
83
- await asyncio.wait_for(asyncio.shield(self._run_task), timeout=2.0)
+ await asyncio.wait_for(asyncio.shield(self._run_task), timeout=3.0)
84
except (asyncio.TimeoutError, asyncio.CancelledError):
85
pass
86
except Exception as e:
0 commit comments