Skip to content

Commit ccc2c44

Browse files
authored
Merge pull request #16 from UiPath/fix/samples
fix: signalr OnMessageReceived
2 parents 1632e63 + c2ddd49 commit ccc2c44

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.11"
3+
version = "0.0.12"
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
@@ -79,7 +79,7 @@ async def _run_server(
7979
f"Session {self.session_id} - sending to SignalR: {json_str[:100]}..."
8080
)
8181
await signalr_client.send(
82-
"OnMessageReceived", [self.session_id, json_str]
82+
"OnMessageReceived", [json_str]
8383
)
8484
finally:
8585
# Cancel the consumer when we exit the loop

0 commit comments

Comments
 (0)