From daa4af18d17a4fc3f3c88324a1a911cc1723e56a Mon Sep 17 00:00:00 2001 From: Kento Sugita Date: Mon, 24 Mar 2025 07:06:05 +0900 Subject: [PATCH] fix timeout to impove stability (#7443) --- 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 f27fb945f6..6e1f108056 100644 --- a/openhands/runtime/action_execution_server.py +++ b/openhands/runtime/action_execution_server.py @@ -238,7 +238,7 @@ class ActionExecutor: await wait_all( (self._init_plugin(plugin) for plugin in self.plugins_to_load), - timeout=30, + timeout=60, ) logger.debug('All plugins initialized')