Skip to content

Commit

Permalink
more clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
bnaecker committed Nov 6, 2023
1 parent 9ba5f93 commit 4973bd3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions oximeter/collector/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -472,8 +472,9 @@ impl OximeterAgent {
match client.check_db_is_at_expected_version().await {
Ok(_) => {}
Err(oximeter_db::Error::DatabaseVersionMismatch {
found, ..
}) if found == 0 => {
found: 0,
..
}) => {
debug!(log, "oximeter database does not exist, creating");
let replicated = client.is_oximeter_cluster().await?;
client
Expand Down

0 comments on commit 4973bd3

Please sign in to comment.