Server tools to backfill, tail, mirror, and verify PLC logs
49
fork

Configure Feed

Select the types of activity you want to include in your feed.

why why

phil 265f9faa a0c0d8b2

+3 -1
+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 - week_to_pages(source.clone(), week, dest.clone()).await?; 42 + week_to_pages(source.clone(), week, dest.clone()) 43 + .await 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(())