Fix rack attack match_type value typo in logging config (#30514)
				
					
				
			This commit is contained in:
		
							parent
							
								
									d326ad0ed9
								
							
						
					
					
						commit
						4d3748ac44
					
				@ -3,7 +3,7 @@
 | 
				
			|||||||
ActiveSupport::Notifications.subscribe(/rack_attack/) do |_name, _start, _finish, _request_id, payload|
 | 
					ActiveSupport::Notifications.subscribe(/rack_attack/) do |_name, _start, _finish, _request_id, payload|
 | 
				
			||||||
  req = payload[:request]
 | 
					  req = payload[:request]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  next unless [:throttle, :blacklist].include? req.env['rack.attack.match_type']
 | 
					  next unless [:throttle, :blocklist].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}")
 | 
					  Rails.logger.info("Rate limit hit (#{req.env['rack.attack.match_type']}): #{req.ip} #{req.request_method} #{req.fullpath}")
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user