mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-24 04:31:02 +02:00
Timeout alias error
This commit is contained in:
parent
cf8c76b5c6
commit
03681a454c
1 changed files with 3 additions and 1 deletions
|
|
@ -128,7 +128,9 @@ async def loader(running, ge_queue, t_queue, path, format, user, collection):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
await asyncio.wait_for(qtype.put(unpacked[1]), 0.5)
|
await asyncio.wait_for(qtype.put(unpacked[1]), 0.5)
|
||||||
except TimeoutError:
|
except:
|
||||||
|
# Hopefully it's TimeoutError. Annoying to match since
|
||||||
|
# it changed in 3.11.
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if not running.get(): break
|
if not running.get(): break
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue