fix(main): reduce rate limit check fail to warned error

This commit is contained in:
Matthew Esposito 2024-11-26 22:55:48 -05:00
parent a4f511f67e
commit 9f6b08cbb2

View file

@ -9,7 +9,7 @@ use std::str::FromStr;
use futures_lite::FutureExt; use futures_lite::FutureExt;
use hyper::Uri; use hyper::Uri;
use hyper::{header::HeaderValue, Body, Request, Response}; use hyper::{header::HeaderValue, Body, Request, Response};
use log::info; use log::{info, warn};
use once_cell::sync::Lazy; use once_cell::sync::Lazy;
use redlib::client::{canonical_path, proxy, rate_limit_check, CLIENT}; use redlib::client::{canonical_path, proxy, rate_limit_check, CLIENT};
use redlib::server::{self, RequestExt}; use redlib::server::{self, RequestExt};
@ -151,9 +151,12 @@ async fn main() {
info!("[✅] Rate limit check passed"); info!("[✅] Rate limit check passed");
} }
Err(e) => { Err(e) => {
log::error!(" Rate limit check failed: {}", e); let mut message = format!("Rate limit check failed: {}", e);
println!("[❌] Rate limit check failed: {}", e); message += "\nThis may cause issues with the rate limit.";
std::process::exit(1); message += "\nPlease report this error with the above information.";
message += "\nhttps://github.com/redlib-org/redlib/issues/new?assignees=sigaloid&labels=bug&title=%F0%9F%90%9B+Bug+Report%3A+Rate+limit+mismatch";
warn!("{}", message);
eprintln!("{}", message);
} }
} }