Skip to content

Commit

Permalink
Remove last ErrReport
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanoroshiba committed Oct 1, 2024
1 parent 4d1f5aa commit 91c9768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/astria-conductor/src/conductor/inner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ enum ExitReason {
ShutdownSignal,
TaskFailed {
name: &'static str,
error: eyre::ErrReport,
error: eyre::Report,
},
}

Expand Down Expand Up @@ -301,7 +301,7 @@ fn report_exit(exit_reason: &ExitReason, message: &str) {
}

#[instrument(skip_all)]
fn check_for_restart(name: &str, err: &eyre::ErrReport) -> bool {
fn check_for_restart(name: &str, err: &eyre::Report) -> bool {
if name != ConductorInner::EXECUTOR {
return false;
}
Expand Down

0 comments on commit 91c9768

Please sign in to comment.