mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-17 09:11:03 +02:00
Same fix for load as for save
This commit is contained in:
parent
2011333a71
commit
f71d5ff84d
1 changed files with 3 additions and 1 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue