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
fix(ffi): fix deadlock in hyper_executor::poll_next (#3370)
poll_next locks the driver, and also calls drain_queue while holding
that lock. Since drain_queue locks the driver too, that results in a
deadlock.
To fix, unlock the driver before calling drain_queue.
Closes#3369
0 commit comments