Compare commits

..

1 commit

Author SHA1 Message Date
Nulo
5c450597d1
Merge a4869d068e into 28662978ae 2024-02-06 01:36:13 +00:00
2 changed files with 2 additions and 4 deletions

2
.gitignore vendored
View file

@ -16,4 +16,4 @@ target/
*/flamegraph.svg
*/perf.data*
scraper-rs/debug*/
scraper-rs/debug/

View file

@ -1,5 +1,4 @@
use again::RetryPolicy;
use chrono::{DateTime, Utc};
use clap::{Parser, ValueEnum};
use cron::Schedule;
use db::Db;
@ -203,8 +202,7 @@ async fn fetch_and_parse(
let point = match maybe_point {
Ok(p) => Ok(p),
Err(err) => {
let now: DateTime<Utc> = Utc::now();
let debug_path = PathBuf::from(format!("debug-{}/", now.format("%Y-%m-%d")));
let debug_path = PathBuf::from("debug/");
tokio::fs::create_dir_all(&debug_path).await.unwrap();
let file_path = debug_path.join(format!("{}.html", nanoid!()));
tokio::fs::write(&file_path, &body).await.unwrap();