summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-23 23:08:33 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-23 23:08:33 +0000
commiteccaf4ca2decd4c8861d9798735cc6169ec92218 (patch)
tree34d9977209d58d765da95273a81c67b33365d8c0
parent68f121e4a5ee3e450f1536049590a10eda4e74f7 (diff)
Increase max-redirections to 5
-rw-r--r--lib/custodian/protocoltest/http.rb2
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