diff --git a/Cargo.lock b/Cargo.lock index ad1c1b2c..bf78d91a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2459,7 +2459,7 @@ dependencies = [ [[package]] name = "rfd-api" -version = "0.1.3" +version = "0.1.4" dependencies = [ "async-trait", "base64 0.21.4", @@ -2512,7 +2512,7 @@ dependencies = [ [[package]] name = "rfd-cli" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "chrono", @@ -2563,7 +2563,7 @@ dependencies = [ [[package]] name = "rfd-processor" -version = "0.1.3" +version = "0.1.4" dependencies = [ "async-trait", "base64 0.21.4", @@ -2601,7 +2601,7 @@ dependencies = [ [[package]] name = "rfd-redirect" -version = "0.1.3" +version = "0.1.4" dependencies = [ "config", "dropshot", diff --git a/rfd-api/Cargo.toml b/rfd-api/Cargo.toml index f33022c2..d4661d55 100644 --- a/rfd-api/Cargo.toml +++ b/rfd-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rfd-api" -version = "0.1.3" +version = "0.1.4" edition = "2021" repository = "https://github.com/oxidecomputer/rfd-api" diff --git a/rfd-cli/Cargo.toml b/rfd-cli/Cargo.toml index 2d93fcc2..1f47b3cd 100644 --- a/rfd-cli/Cargo.toml +++ b/rfd-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rfd-cli" -version = "0.1.3" +version = "0.1.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rfd-processor/Cargo.toml b/rfd-processor/Cargo.toml index 393a5659..54f87a49 100644 --- a/rfd-processor/Cargo.toml +++ b/rfd-processor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rfd-processor" -version = "0.1.3" +version = "0.1.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rfd-processor/src/scanner.rs b/rfd-processor/src/scanner.rs index cc3c8512..b83e2aec 100644 --- a/rfd-processor/src/scanner.rs +++ b/rfd-processor/src/scanner.rs @@ -1,4 +1,4 @@ -use diesel::result::{Error as DieselError, DatabaseErrorKind}; +use diesel::result::{DatabaseErrorKind, Error as DieselError}; use rfd_model::{ storage::{JobStore, StoreError}, NewJob, @@ -36,7 +36,10 @@ pub async fn scanner(ctx: Arc) -> Result<(), ScannerError> { Ok(job) => tracing::trace!(?job.id, "Added job to the queue"), Err(err) => { match err { - StoreError::Db(DieselError::DatabaseError(DatabaseErrorKind::UniqueViolation, _)) => { + StoreError::Db(DieselError::DatabaseError( + DatabaseErrorKind::UniqueViolation, + _, + )) => { // Nothing to do here, we expect uniqueness conflicts. It is expected // that the scanner picks ups redundant jobs for RFDs that have not // changed since the last scan diff --git a/rfd-redirect/Cargo.toml b/rfd-redirect/Cargo.toml index b9c40e2b..0fd98818 100644 --- a/rfd-redirect/Cargo.toml +++ b/rfd-redirect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rfd-redirect" -version = "0.1.3" +version = "0.1.4" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html