runtime(eval): increase runtime status request timeout for sessions (#5619)

This commit is contained in:
Xingyao Wang 2024-12-16 11:51:08 -05:00 committed by GitHub
parent 6db32025b4
commit d6a2c4b167
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -149,7 +149,7 @@ class RemoteRuntime(Runtime):
'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')