diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-23 23:08:33 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-23 23:08:33 +0000 |
commit | 5ef7061e83dc75d6ee6fb574f22098acdb5b41e3 (patch) | |
tree | 34d9977209d58d765da95273a81c67b33365d8c0 /lib/custodian/protocoltest/http.rb | |
parent | 2ada35ab083efc20a97cc90710f634e91526f94f (diff) |
Increase max-redirections to 5
Diffstat (limited to 'lib/custodian/protocoltest/http.rb')
-rw-r--r-- | lib/custodian/protocoltest/http.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/http.rb b/lib/custodian/protocoltest/http.rb index f9766b1..8de768d 100644 --- a/lib/custodian/protocoltest/http.rb +++ b/lib/custodian/protocoltest/http.rb @@ -124,7 +124,7 @@ module Custodian begin c = Curl::Easy.new(@url) c.follow_location = true - c.max_redirects = 3 + c.max_redirects = 5 c.timeout = 20 c.perform @status = c.response_code |