From 9fb4c995aad6c02ad6c4ae4f5550a3502a1f23c1 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Thu, 13 Mar 2025 16:43:40 +0000 Subject: [PATCH] Removed delay for repeated attempts --- src/autobigs/engine/analysis/bigsdb.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/autobigs/engine/analysis/bigsdb.py b/src/autobigs/engine/analysis/bigsdb.py index 7471f6b..e508fb3 100644 --- a/src/autobigs/engine/analysis/bigsdb.py +++ b/src/autobigs/engine/analysis/bigsdb.py @@ -103,7 +103,6 @@ class RemoteBIGSdbMLSTProfiler(BIGSdbMLSTProfiler): except ConnectionError|ServerDisconnectedError as e: # Errors we will retry last_error = e success = False - await asyncio.sleep(5) # In case the connection issue is due to rate issues else: success = True if not success and last_error is not None: @@ -159,7 +158,6 @@ class RemoteBIGSdbMLSTProfiler(BIGSdbMLSTProfiler): except ConnectionError|ServerDisconnectedError as e: last_error = e success = False - await asyncio.sleep(5) else: success = True try: