fix ondisconnect never resolving (#135)

This commit is contained in:
Will Brown 2022-10-02 13:16:36 -04:00 committed by GitHub
parent 71a919e91e
commit 68def82d90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -893,6 +893,7 @@ impl OnDisconnect {
Poll::Ready(())
} else if let Some(on_disconnect) = self.inner.on_disconnect.take() {
on_disconnect[self.token].register(cx.waker());
self.inner.on_disconnect.set(Some(on_disconnect));
Poll::Pending
} else {
Poll::Ready(())