Skip to content

Commit

Permalink
Merge pull request #33 from wack/robbie/fix-lints
Browse files Browse the repository at this point in the history
Fix lints
  • Loading branch information
RobbieMcKinstry authored Nov 21, 2024
2 parents 29c4435 + c190af8 commit 20b1bae
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 20b1bae

Please sign in to comment.