From 91c9768f55ccb69ae3010a1d1bfa40726aaf4f99 Mon Sep 17 00:00:00 2001 From: ethanoroshiba Date: Tue, 1 Oct 2024 08:12:11 -0500 Subject: [PATCH] Remove last ErrReport --- crates/astria-conductor/src/conductor/inner.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/astria-conductor/src/conductor/inner.rs b/crates/astria-conductor/src/conductor/inner.rs index 54df348e40..c52bd32536 100644 --- a/crates/astria-conductor/src/conductor/inner.rs +++ b/crates/astria-conductor/src/conductor/inner.rs @@ -48,7 +48,7 @@ enum ExitReason { ShutdownSignal, TaskFailed { name: &'static str, - error: eyre::ErrReport, + error: eyre::Report, }, } @@ -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; }