mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Better io tags handling (#269)
This commit is contained in:
parent
6adeadfff0
commit
fb1d2a268d
14 changed files with 108 additions and 60 deletions
|
@ -46,7 +46,7 @@ impl ReadContext {
|
|||
// dest buffer has new data, wake up dispatcher
|
||||
if inner.buffer.read_destination_size() >= hw {
|
||||
log::trace!(
|
||||
"{}Io read buffer is too large {}, enable read back-pressure",
|
||||
"{}: Io read buffer is too large {}, enable read back-pressure",
|
||||
self.0.tag(),
|
||||
total
|
||||
);
|
||||
|
@ -62,7 +62,7 @@ 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