mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
fix ondisconnect never resolving (#135)
This commit is contained in:
parent
71a919e91e
commit
68def82d90
1 changed files with 1 additions and 0 deletions
|
@ -893,6 +893,7 @@ impl OnDisconnect {
|
||||||
Poll::Ready(())
|
Poll::Ready(())
|
||||||
} else if let Some(on_disconnect) = self.inner.on_disconnect.take() {
|
} else if let Some(on_disconnect) = self.inner.on_disconnect.take() {
|
||||||
on_disconnect[self.token].register(cx.waker());
|
on_disconnect[self.token].register(cx.waker());
|
||||||
|
self.inner.on_disconnect.set(Some(on_disconnect));
|
||||||
Poll::Pending
|
Poll::Pending
|
||||||
} else {
|
} else {
|
||||||
Poll::Ready(())
|
Poll::Ready(())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue