mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-26 00:46:22 +02:00
Timeout alias error (#202)
This commit is contained in:
parent
cf8c76b5c6
commit
803f110891
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:
|
||||
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
|
||||
|
||||
if not running.get(): break
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue