Skip to content

Commit 02bd33e

Browse files
committed
fix: revert
1 parent 5fc746a commit 02bd33e

File tree

2 files changed

+1
-5
lines changed

2 files changed

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

src/uipath_mcp/_cli/_runtime/_stdio_client.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,6 @@ async def stdin_writer():
9898
finally:
9999
# Clean up process to prevent any dangling orphaned processes
100100
try:
101-
# Cancel the task group to stop readers/writers
102-
tg.cancel_scope.cancel()
103101
# Then terminate the process with escalating signals
104102
process.terminate()
105103
try:
@@ -116,7 +114,5 @@ async def stdin_writer():
116114
except TimeoutError:
117115
# Force kill if it doesn't terminate
118116
process.kill()
119-
# Give the event loop a chance to clean up
120-
await anyio.sleep(0.1)
121117
except Exception:
122118
pass

0 commit comments

Comments
 (0)