mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-17 17:21:02 +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:
|
||||
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