Skip to content

Commit

Permalink
Minor fmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixMcFelix committed Dec 6, 2023
1 parent deaf98b commit 49bd634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nexus/db-queries/src/db/datastore/external_ip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ impl DataStore {
let name = data.name().clone();
let explicit_ip = data.explicit_ip().is_some();
NextExternalIp::new(data).get_result_async(conn).await.map_err(|e| {
use diesel::result::Error::NotFound;
use diesel::result::Error::DatabaseError;
use diesel::result::Error::NotFound;
match e {
NotFound => {
if explicit_ip {
Expand Down

0 comments on commit 49bd634

Please sign in to comment.