Skip to content

Commit

Permalink
Driver: Downgrade failed scheduler message delivery to info
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMcFelix committed Nov 20, 2023
1 parent 77e3916 commit 02c9812
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/driver/scheduler/idle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::{collections::HashMap, sync::Arc, time::Duration};
use flume::{Receiver, Sender};
use nohash_hasher::{BuildNoHashHasher, IntMap};
use tokio::time::{Instant as TokInstant, Interval};
use tracing::warn;
use tracing::info;

use crate::constants::*;

Expand Down Expand Up @@ -97,7 +97,7 @@ impl Idle {
Ok(true) | Err(_) => self.to_cull.push(id),
}
} else {
warn!("Received post-cull message for {id:?}, discarding.");
info!("Received post-cull message for {id:?}, discarding.");
}
},
Ok(SchedulerMessage::Overspill(worker_id, id, task)) => {
Expand Down

0 comments on commit 02c9812

Please sign in to comment.