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 why
bad-example.com
5 months ago
265f9faa
a0c0d8b2
+3
-1
1 changed file
expand all
collapse all
unified
split
src
backfill.rs
+3
-1
src/backfill.rs
···
39
39
while let Some(week) = weeks.lock().await.pop() {
40
40
let when = Into::<Dt>::into(week).to_rfc3339();
41
41
log::trace!("worker {w}: fetching week {when} (-{})", week.n_ago());
42
42
-
week_to_pages(source.clone(), week, dest.clone()).await?;
42
42
+
week_to_pages(source.clone(), week, dest.clone())
43
43
+
.await
44
44
+
.inspect_err(|e| log::error!("failing week_to_pages: {e}"))?;
43
45
}
44
46
log::info!("done with the weeks ig");
45
47
Ok(())