From f14d5b7ee17788916534b6fc6253a01bdf09cf2a Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Wed, 18 Sep 2019 01:07:42 -0500 Subject: allow up to 3 hops --- app/lib/request.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/request.rb b/app/lib/request.rb index e555ae6a1..c84daaa69 100644 --- a/app/lib/request.rb +++ b/app/lib/request.rb @@ -125,7 +125,7 @@ class Request end def http_client - @http_client ||= HTTP.use(:auto_inflate).timeout(:per_operation, timeout).follow(max_hops: 2) + @http_client ||= HTTP.use(:auto_inflate).timeout(:per_operation, timeout).follow(max_hops: 3) end def use_proxy? -- cgit