Increase default search rate limit. (#2424)

dont_search_community_description
Dessalines 2 years ago committed by GitHub
parent 0a14b17747
commit 265dc54627
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
}

@ -190,7 +190,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)]

Loading…
Cancel
Save