From a0c0d8b2bef79f8c6540e436ea5014f9d9aba0dd Mon Sep 17 00:00:00 2001 From: phil Date: Wed, 24 Sep 2025 23:21:31 -0400 Subject: [PATCH] why --- src/backfill.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/backfill.rs b/src/backfill.rs index e3ed6dd..31e6928 100644 --- a/src/backfill.rs +++ b/src/backfill.rs @@ -50,7 +50,9 @@ pub async fn backfill( // wait for the big backfill to finish while let Some(res) = workers.join_next().await { - res??; + res + .inspect_err(|e| log::error!("problem joining source workers: {e}"))? + .inspect_err(|e| log::error!("problem *from* source worker: {e}"))?; } log::info!("finished fetching backfill in {:?}", t_step.elapsed()); Ok(()) -- 2.51.2