From 944f9344756baa836e2b916c45a7bb423b7e1d05 Mon Sep 17 00:00:00 2001 From: tobitege <10787084+tobitege@users.noreply.github.com> Date: Sun, 18 Aug 2024 00:00:20 +0200 Subject: [PATCH] remove 1s sleep from _ensure_session (runtime) (#3439) --- opendevin/runtime/client/runtime.py | 1 - 1 file changed, 1 deletion(-) diff --git a/opendevin/runtime/client/runtime.py b/opendevin/runtime/client/runtime.py index 04543c0a6b..fbcfb60aef 100644 --- a/opendevin/runtime/client/runtime.py +++ b/opendevin/runtime/client/runtime.py @@ -183,7 +183,6 @@ class EventStreamRuntime(Runtime): raise e async def _ensure_session(self): - await asyncio.sleep(1) if self.session is None or self.session.closed: self.session = aiohttp.ClientSession() return self.session