order-book
lib sometimes core-dumps on ctl-c.. (deribit
, cryptofeed
deps) #12
Loading…
Reference in New Issue
There is no content yet.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may exist for a short time before cleaning up, in most cases it CANNOT be undone. Continue?
Just logging this so we don’t forget about it (since i just did the
gdb
walkthrough on it..)i think the issue is reproduced by..
use of
breakpoint()
from anasyncio
side task without having first enabledgreenback
inside thetractor
runtime using,which, must be called from a
trio
side task..Not sure exactly how this eventually results in a
epoll_wait()
call crashing from inside theorder-book
code (utils/orderbook.c
see below) ??core-dump appears to be sourced inside the file
utils/orderbook.c
??with a
coredumpctl debug
and a bit of poking showing..which turns out to be inside a sub-dep of
cryptofeed
by the same author:cryptofeed
talking about same file: https://github.com/bmoscon/cryptofeed/issues/1022