increased a limit of requests per hour
This commit is contained in:
parent
0acb38109f
commit
a3ee77c94a
|
@ -9,7 +9,7 @@ class ApiDefender < Rack::Throttle::Hourly
|
||||||
options = {
|
options = {
|
||||||
cache: Redis.new(thread_safe: true),
|
cache: Redis.new(thread_safe: true),
|
||||||
key_prefix: :throttle,
|
key_prefix: :throttle,
|
||||||
max: 2000 # only 2000 request per hour
|
max: 3000 # only 3000 request per hour
|
||||||
}
|
}
|
||||||
@app, @options = app, options
|
@app, @options = app, options
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue