This commit is contained in:
Nikolay Kim 2025-03-27 10:47:35 +01:00
parent 9de591c399
commit 4a94400969
2 changed files with 3 additions and 3 deletions

View file

@ -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;
}

View file

@ -401,7 +401,7 @@ impl Accept {
self.backpressure(true);
return false;
} else {
println!("------- SENT ACCEPTED");
log::debug!("------- SENT ACCEPTED");
}
}
Ok(None) => return true,