From 337493240479907c4013dd6254135e4323de8261 Mon Sep 17 00:00:00 2001 From: Kento Sugita Date: Mon, 24 Mar 2025 00:45:27 +0900 Subject: [PATCH] fix timeout to impove stability --- openhands/runtime/action_execution_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/runtime/action_execution_server.py b/openhands/runtime/action_execution_server.py index f27fb945f675..6e1f108056b0 100644 --- a/openhands/runtime/action_execution_server.py +++ b/openhands/runtime/action_execution_server.py @@ -238,7 +238,7 @@ async def ainit(self): await wait_all( (self._init_plugin(plugin) for plugin in self.plugins_to_load), - timeout=30, + timeout=60, ) logger.debug('All plugins initialized')