File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/uipath_mcp/_cli/_runtime Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11[project ]
22name = " uipath-mcp"
3- version = " 0.0.41 "
3+ version = " 0.0.42 "
44description = " UiPath MCP SDK"
55readme = { file = " README.md" , content-type = " text/markdown" }
66requires-python = " >=3.10"
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ async def handle_signalr_open(self) -> None:
217217 self .session_servers [self .server .session_id ] = session_server
218218 await session_server .get_incoming_messages ()
219219 except Exception as e :
220- self .dispose_session ()
220+ await self .dispose_session ()
221221 logger .error (f"Error starting session server: { str (e )} " )
222222
223223 async def handle_signalr_close (self ) -> None :
@@ -275,7 +275,7 @@ async def _register(self) -> None:
275275
276276 # Now that we're outside the context managers, check if initialization succeeded
277277 if not initialization_successful :
278- self .dispose_session ()
278+ await self .dispose_session ()
279279 error_message = "The server process failed to initialize. Verify environment variables are set correctly."
280280 if server_stderr_output :
281281 error_message += f"\n Server error output:\n { server_stderr_output } "
You can’t perform that action at this time.
0 commit comments