diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-09-18 01:07:42 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-09-18 01:07:42 -0500 |
commit | f14d5b7ee17788916534b6fc6253a01bdf09cf2a (patch) | |
tree | 252ffbd3dbe6af9ce81d89a0bf4baf6db3d2f9a0 /app | |
parent | cc32f0f50bcd25117fae3ca32ea174558b03d97c (diff) |
allow up to 3 hops
Diffstat (limited to 'app')
-rw-r--r-- | app/lib/request.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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? |