Same fix for load as for save

This commit is contained in:
Mark Adams 2024-12-08 23:56:43 +00:00
parent 2011333a71
commit f71d5ff84d

View file

@ -29,7 +29,9 @@ async def load_ge(running, queue, url):
try:
msg = await asyncio.wait_for(queue.get(), 1)
except TimeoutError:
except:
# Hopefully it's TimeoutError. Annoying to match since
# it changed in 3.11.
continue
msg = {