mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
wip
This commit is contained in:
parent
9de591c399
commit
4a94400969
2 changed files with 3 additions and 3 deletions
|
@ -184,10 +184,10 @@ impl<F: ServerConfiguration> HandleCmdState<F> {
|
|||
if self.next > self.workers.len() {
|
||||
self.next = self.workers.len() - 1;
|
||||
}
|
||||
println!("--------- SENDING ITEM");
|
||||
log::debug!("--------- SENDING ITEM");
|
||||
match self.workers[self.next].send(item) {
|
||||
Ok(()) => {
|
||||
println!("--------- ITEM SENT");
|
||||
log::debug!("--------- ITEM SENT");
|
||||
self.next = (self.next + 1) % self.workers.len();
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -401,7 +401,7 @@ impl Accept {
|
|||
self.backpressure(true);
|
||||
return false;
|
||||
} else {
|
||||
println!("------- SENT ACCEPTED");
|
||||
log::debug!("------- SENT ACCEPTED");
|
||||
}
|
||||
}
|
||||
Ok(None) => return true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue