tangled
alpha
login
or
join now
microcosm.blue
/
Allegedly
52
fork
atom
Server tools to backfill, tail, mirror, and verify PLC logs
52
fork
atom
overview
issues
4
pulls
1
pipelines
why
bad-example.com
5 months ago
a0c0d8b2
ceae5ae5
+3
-1
1 changed file
expand all
collapse all
unified
split
src
backfill.rs
+3
-1
src/backfill.rs
···
50
50
51
51
// wait for the big backfill to finish
52
52
while let Some(res) = workers.join_next().await {
53
53
-
res??;
53
53
+
res
54
54
+
.inspect_err(|e| log::error!("problem joining source workers: {e}"))?
55
55
+
.inspect_err(|e| log::error!("problem *from* source worker: {e}"))?;
54
56
}
55
57
log::info!("finished fetching backfill in {:?}", t_step.elapsed());
56
58
Ok(())