Change max redirects followed to 2 (#5136)
I see no reason to allow more than that. Usually a redirect is HTTP->HTTPS, then maybe URL structure changed, but more than that is highly unlikely to be a legitimate use case.
This commit is contained in:
		
							parent
							
								
									d0b4709b2a
								
							
						
					
					
						commit
						d2f56d1cbc
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -85,6 +85,6 @@ class Request
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def http_client
 | 
					  def http_client
 | 
				
			||||||
    HTTP.timeout(:per_operation, timeout).follow
 | 
					    HTTP.timeout(:per_operation, timeout).follow(max_hops: 2)
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue