Skip to content

Commit

Permalink
fix: increasing rate-limiting threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
geekbrother committed May 29, 2024
1 parent 3528578 commit 2cb13ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ pub fn new_state(
uptime: std::time::Instant::now(),
http_client: reqwest::Client::new(),
provider_cache: Cache::new(100),
rate_limit: rate_limit::RateLimiter::new(10, Duration::from_secs(60)),
rate_limit: rate_limit::RateLimiter::new(20, Duration::from_secs(60)),
})
}

Expand Down

0 comments on commit 2cb13ea

Please sign in to comment.