announcing good-first-issue tags added on @tangled.sh (not affiliated with tangled!)

struggling with spelling "healthcheck" as usual

Changed files
+5 -5
src
+5 -5
src/main.rs
··· 52 dry_run: bool, 53 /// send a checkin to this url every 5 mins 54 #[arg(long)] 55 - healtcheck_ping: Option<Url>, 56 } 57 58 struct IssueDetails { ··· 299 let mut interval = tokio::time::interval(Duration::from_secs(5 * 60)); 300 loop { 301 interval.tick().await; 302 - log::trace!("sending healtcheck ping..."); 303 if let Err(e) = client 304 .get(url.clone()) 305 .send() 306 .await 307 .and_then(reqwest::Response::error_for_status) 308 { 309 - log::warn!("error sending healtcheck ping: {e}"); 310 } 311 } 312 } ··· 345 .connect_cursor(args.jetstream_cursor.map(Cursor::from_raw_u64)) 346 .await?; 347 348 - if let Some(hc) = args.healtcheck_ping { 349 - log::info!("starting healtcheck ping task..."); 350 tokio::task::spawn(hc_ping(hc.clone(), slingshot_client.clone())); 351 } 352
··· 52 dry_run: bool, 53 /// send a checkin to this url every 5 mins 54 #[arg(long)] 55 + healthcheck_ping: Option<Url>, 56 } 57 58 struct IssueDetails { ··· 299 let mut interval = tokio::time::interval(Duration::from_secs(5 * 60)); 300 loop { 301 interval.tick().await; 302 + log::trace!("sending healthcheck ping..."); 303 if let Err(e) = client 304 .get(url.clone()) 305 .send() 306 .await 307 .and_then(reqwest::Response::error_for_status) 308 { 309 + log::warn!("error sending healthcheck ping: {e}"); 310 } 311 } 312 } ··· 345 .connect_cursor(args.jetstream_cursor.map(Cursor::from_raw_u64)) 346 .await?; 347 348 + if let Some(hc) = args.healthcheck_ping { 349 + log::info!("starting healthcheck ping task..."); 350 tokio::task::spawn(hc_ping(hc.clone(), slingshot_client.clone())); 351 } 352