diff --git a/rust/rsc/src/bin/rsc/config.rs b/rust/rsc/src/bin/rsc/config.rs index f8f031675..a45e01f15 100644 --- a/rust/rsc/src/bin/rsc/config.rs +++ b/rust/rsc/src/bin/rsc/config.rs @@ -43,7 +43,7 @@ pub enum RSCJobEvictionConfig { pub struct RSCLoadShedConfig { // How often to refresh the system load pub tick_rate: u64, - // Load value after which load should be statisically shed + // Load value after which load should be statistically shed pub target: f64, } diff --git a/rust/rsc/src/bin/rsc/main.rs b/rust/rsc/src/bin/rsc/main.rs index a291108d5..192df3d7e 100644 --- a/rust/rsc/src/bin/rsc/main.rs +++ b/rust/rsc/src/bin/rsc/main.rs @@ -13,7 +13,6 @@ use std::collections::HashMap; use std::io::{Error, ErrorKind}; use std::sync::{Arc, RwLock}; use std::time::Duration; - use tracing; mod add_job;