Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbieMcKinstry committed Nov 20, 2024
1 parent 29c4435 commit c190af8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/adapters/monitors/cloudwatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ impl CloudWatch {
}
Err(err) => {
println!("Error querying cloudwatch metrics: {:?}", err);
return 0;
0
}
}
}
Expand Down
5 changes: 1 addition & 4 deletions src/adapters/monitors/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
use crate::{
pipeline::ResponseMonitor,
stats::{Group, Observation},
};
use crate::{pipeline::ResponseMonitor, stats::Observation};
use async_trait::async_trait;
use miette::Result;
use tokio::{pin, time::interval};
Expand Down
1 change: 0 additions & 1 deletion src/pipeline/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use crate::adapters::{batch_observations, EngineController};
use crate::stats::Group;
use crate::{
adapters::{repeat_query, DecisionEngine, Ingress, Monitor},
metrics::ResponseStatusCode,
Expand Down

0 comments on commit c190af8

Please sign in to comment.