Fix undefined method error. (#10867)
This commit is contained in:
parent
e2c0d05538
commit
afb17b7045
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class Rack::Attack
|
|||
end
|
||||
|
||||
throttle('throttle_unauthenticated_api', limit: 300, period: 5.minutes) do |req|
|
||||
req.remote_ip if req.api_request? && !req.authenticated?
|
||||
req.remote_ip if req.api_request? && req.unauthenticated?
|
||||
end
|
||||
|
||||
throttle('throttle_api_media', limit: 30, period: 30.minutes) do |req|
|
||||
|
|
Loading…
Reference in a new issue