Timeout alias error (#202)

This commit is contained in:
cybermaggedon 2024-12-09 00:31:03 +00:00 committed by GitHub
parent cf8c76b5c6
commit 803f110891
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -128,7 +128,9 @@ async def loader(running, ge_queue, t_queue, path, format, user, collection):
try:
await asyncio.wait_for(qtype.put(unpacked[1]), 0.5)
except TimeoutError:
except:
# Hopefully it's TimeoutError. Annoying to match since
# it changed in 3.11.
continue
if not running.get(): break