DEV: fixed capitalization in rate limit message (#11193)
This commit is contained in:
parent
cdb7ddc258
commit
0a0fd6eace
|
@ -167,7 +167,7 @@ class Middleware::RequestTracker
|
|||
request = Rack::Request.new(env)
|
||||
|
||||
if rate_limit(request)
|
||||
result = [429, {}, ["Slow down, too Many Requests from this IP Address"]]
|
||||
result = [429, {}, ["Slow down, too many requests from this IP address"]]
|
||||
return result
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue