v0.18.21: fix borrow checker error in debug logging

This commit is contained in:
2026-05-12 08:49:33 -07:00
parent 9d092360ad
commit 4903e1e43d
+1 -1
View File
@@ -178,13 +178,13 @@ impl<I: Send + 'static, R: Send + 'static> Pipeline<I, R> {
} }
} }
Err(e) => { Err(e) => {
first_err = Some(e);
if debug_enabled() { if debug_enabled() {
tracing::debug!( tracing::debug!(
"Pipeline: apply error, stopping, err={:?}", "Pipeline: apply error, stopping, err={:?}",
e e
); );
} }
first_err = Some(e);
} }
} }