mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-18 09:41:03 +02:00
Same fix for load as for save
This commit is contained in:
parent
f71d5ff84d
commit
92068864c0
1 changed files with 3 additions and 1 deletions
|
|
@ -57,7 +57,9 @@ async def load_triples(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