fix(backend): add default limiter to rate limiter

This commit is contained in:
Sam 2023-02-25 21:41:51 +01:00
parent c95285e26b
commit b92ced7d1a
No known key found for this signature in database
GPG Key ID: B4EF20DDE721CAA1
1 changed files with 3 additions and 2 deletions

View File

@ -29,8 +29,9 @@ type scopedLimiter struct {
func NewLimiter(defaultLimit int, windowLength time.Duration, options ...httprate.Option) *Limiter {
return &Limiter{
windowLength: windowLength,
options: options,
windowLength: windowLength,
options: options,
defaultLimiter: httprate.Limit(defaultLimit, windowLength, options...),
}
}