mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-19 10:11:01 +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:
|
try:
|
||||||
msg = await asyncio.wait_for(queue.get(), 1)
|
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
|
continue
|
||||||
|
|
||||||
msg = {
|
msg = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue