mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
80a944c882
Fix #7095
5 lines
311 B
Ruby
5 lines
311 B
Ruby
ActiveSupport::Notifications.subscribe('rack.attack') do |_name, _start, _finish, _request_id, req|
|
|
next unless [:throttle, :blacklist].include? req.env['rack.attack.match_type']
|
|
Rails.logger.info("Rate limit hit (#{req.env['rack.attack.match_type']}): #{req.ip} #{req.request_method} #{req.fullpath}")
|
|
end
|