Skip to content

Commit

Permalink
runtime(eval): increase runtime status request timeout for sessions (A…
Browse files Browse the repository at this point in the history
  • Loading branch information
xingyaoww authored Dec 16, 2024
1 parent 6db3202 commit d6a2c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openhands/runtime/impl/remote/remote_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def _check_existing_runtime(self) -> bool:
'GET',
f'{self.config.sandbox.remote_runtime_api_url}/sessions/{self.sid}',
is_retry=False,
timeout=5,
timeout=30,
) as response:
data = response.json()
status = data.get('status')
Expand Down

0 comments on commit d6a2c4b

Please sign in to comment.