Skip to content

Commit

Permalink
clippy cleanliness
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed Jul 4, 2024
1 parent 9da775b commit 97a7e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nexus/src/app/background/tasks/instance_updater.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ impl InstanceUpdater {
Ok(Err(err)) => {
warn!(opctx.log, "update saga failed!"; "error" => %err);
stats.sagas_failed += 1;
last_err = Err(err.into());
last_err = Err(err);
}
Ok(Ok(())) => stats.sagas_completed += 1,
}
Expand Down

0 comments on commit 97a7e4e

Please sign in to comment.