#876: increase limit of requests per hour

This commit is contained in:
Vokhmin Alexey V 2013-01-31 17:34:27 +04:00
parent 6473b73859
commit b45ea0da11
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ class ApiDefender < Rack::Throttle::Hourly
options = {
:cache => Redis.new(:thread_safe => true),
:key_prefix => :throttle,
:max => 500 # only 500 request per hour
:max => 2000 # only 2000 request per hour
}
@app, @options = app, options
end