You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- This occurs because our notifier uses a python thread instead of a C++
thread, and (I think) Python tries to kill it via pthread_cancel,
which causes a weird exception to occur, which causes SIGABRT when we
try to acquire the GIL
- Instead we just hang the thread, an approach recently taken by python
itself
- Long term we should switch back to a C++ thread
- Fixes#147
0 commit comments