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
Previously, we'd use the node's spawned multithread runtime to await the
event handler finishing up. However, this would require a
`block_on`/`block_in_place` dance, the former of which could still end
up locking up if we happen to be out of blocking threads on shutdown.
Here, we instead avoid touching the runtime and use a new current thread
runtime to wait for event handler shutdown.
0 commit comments