mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Fix filter leak during Io drop (#274)
This commit is contained in:
parent
a4f9802d6d
commit
dd6db862f3
7 changed files with 20 additions and 7 deletions
|
@ -62,7 +62,11 @@ impl ReadContext {
|
|||
inner.read_task.wake();
|
||||
}
|
||||
}
|
||||
log::trace!("{}: New {} bytes available, wakeup dispatcher", self.0.tag(), nbytes);
|
||||
log::trace!(
|
||||
"{}: New {} bytes available, wakeup dispatcher",
|
||||
self.0.tag(),
|
||||
nbytes
|
||||
);
|
||||
inner.dispatch_task.wake();
|
||||
} else {
|
||||
if nbytes >= hw {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue