Increased timeout to 5 minutes
Some checks reported errors
autoBIGS.engine/pipeline/tag Something is wrong with the build of this commit
autoBIGS.engine/pipeline/head There was a failure building this commit

This commit is contained in:
Harrison Deng 2025-03-13 18:37:33 +00:00
parent 3cb10a4609
commit 34bf02c75a

View File

@ -48,7 +48,7 @@ class RemoteBIGSdbMLSTProfiler(BIGSdbMLSTProfiler):
self._database_name = database_name self._database_name = database_name
self._scheme_id = scheme_id self._scheme_id = scheme_id
self._base_url = f"{database_api}/db/{self._database_name}/schemes/{self._scheme_id}/" self._base_url = f"{database_api}/db/{self._database_name}/schemes/{self._scheme_id}/"
self._http_client = ClientSession(self._base_url, timeout=ClientTimeout(60)) self._http_client = ClientSession(self._base_url, timeout=ClientTimeout(300))
async def __aenter__(self): async def __aenter__(self):
return self return self