Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
augustuswm committed Nov 3, 2023
1 parent 50b5847 commit b90c260
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rfd-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion rfd-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion rfd-processor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 5 additions & 2 deletions rfd-processor/src/scanner.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -36,7 +36,10 @@ pub async fn scanner(ctx: Arc<Context>) -> 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
Expand Down
2 changes: 1 addition & 1 deletion rfd-redirect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b90c260

Please sign in to comment.