From 0dbcbaab54a572fcac3044a55d86a59762df2fbf Mon Sep 17 00:00:00 2001 From: Robert Brennan Date: Mon, 30 Dec 2024 12:45:37 -0500 Subject: [PATCH] fix remote runtime --- openhands/runtime/impl/remote/remote_runtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/runtime/impl/remote/remote_runtime.py b/openhands/runtime/impl/remote/remote_runtime.py index ba59f2281d77..a4d268c3d3a4 100644 --- a/openhands/runtime/impl/remote/remote_runtime.py +++ b/openhands/runtime/impl/remote/remote_runtime.py @@ -363,7 +363,7 @@ def _send_runtime_api_request(self, method, url, **kwargs): def _send_action_server_request(self, method, url, **kwargs): try: - super()._send_action_server_request(method, url, **kwargs) + return super()._send_action_server_request(method, url, **kwargs) except requests.Timeout: self.log('error', 'No response received within the timeout period.') raise