Skip to content

Commit 22368e0

Browse files
rbrenpull[bot]
authored andcommitted
Fix remote runtime (#5923)
1 parent 3e75b29 commit 22368e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openhands/runtime/impl/remote/remote_runtime.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ def _send_runtime_api_request(self, method, url, **kwargs):
363363

364364
def _send_action_server_request(self, method, url, **kwargs):
365365
try:
366-
super()._send_action_server_request(method, url, **kwargs)
366+
return super()._send_action_server_request(method, url, **kwargs)
367367
except requests.Timeout:
368368
self.log('error', 'No response received within the timeout period.')
369369
raise

0 commit comments

Comments
 (0)