From 1469b2a4a425cba9774e60504ed4fd8f35483c61 Mon Sep 17 00:00:00 2001 From: Robert Brennan Date: Mon, 25 Nov 2024 17:09:03 -0500 Subject: [PATCH] Update openhands/runtime/impl/remote/remote_runtime.py --- openhands/runtime/impl/remote/remote_runtime.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openhands/runtime/impl/remote/remote_runtime.py b/openhands/runtime/impl/remote/remote_runtime.py index 871235b28b45..548e8a0ee23e 100644 --- a/openhands/runtime/impl/remote/remote_runtime.py +++ b/openhands/runtime/impl/remote/remote_runtime.py @@ -261,6 +261,7 @@ def _start_runtime(self): f'Runtime started. URL: {self.runtime_url}', ) except requests.HTTPError as e: + self.log('error', f'Unable to start runtime: {e}') raise RuntimeUnavailableError() from e def _resume_runtime(self):