remove the db pool queue full warning
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
d036394ec7
commit
00f7745ec4
1 changed files with 1 additions and 8 deletions
|
@ -12,7 +12,7 @@ use std::{
|
|||
|
||||
use async_channel::{QueueStrategy, Receiver, RecvError, Sender};
|
||||
use conduwuit::{
|
||||
Error, Result, Server, debug, debug_warn, err, error, implement,
|
||||
Error, Result, Server, debug, err, error, implement,
|
||||
result::DebugInspect,
|
||||
smallvec::SmallVec,
|
||||
trace,
|
||||
|
@ -245,13 +245,6 @@ async fn execute(&self, queue: &Sender<Cmd>, cmd: Cmd) -> Result {
|
|||
self.queued_max.fetch_max(queue.len(), Ordering::Relaxed);
|
||||
}
|
||||
|
||||
if queue.is_full() {
|
||||
debug_warn!(
|
||||
capacity = ?queue.capacity(),
|
||||
"pool queue is full"
|
||||
);
|
||||
}
|
||||
|
||||
queue
|
||||
.send(cmd)
|
||||
.await
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue