Increase default search rate limit. (#2424)

This commit is contained in:
Dessalines 2022-09-03 05:37:27 -04:00 committed by Dessalines
parent 90b704f88f
commit 4528658999
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@
comment: 6
# Interval length for comment limit, in seconds
comment_per_second: 600
search: 6
search: 60
# Interval length for search limit, in seconds
search_per_second: 600
}

View file

@ -170,7 +170,7 @@ pub struct RateLimitConfig {
/// Interval length for comment limit, in seconds
#[default(600)]
pub comment_per_second: i32,
#[default(6)]
#[default(60)]
pub search: i32,
/// Interval length for search limit, in seconds
#[default(600)]