summaryrefslogtreecommitdiff
path: root/lib/custodian/protocol-tests/https.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-14 10:53:27 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-14 10:53:27 +0000
commitece857c064e54d4e85f639c64793c7161e8cf58a (patch)
tree60e08a9dcc09c5f4fd4b6f0ce15aeae7944003c1 /lib/custodian/protocol-tests/https.rb
parent45d9140382e71f6216b22b8bf46c3546d16dc2eb (diff)
URL should add a path if missing
Diffstat (limited to 'lib/custodian/protocol-tests/https.rb')
-rwxr-xr-xlib/custodian/protocol-tests/https.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/custodian/protocol-tests/https.rb b/lib/custodian/protocol-tests/https.rb
index 8fb643f..8db4da5 100755
--- a/lib/custodian/protocol-tests/https.rb
+++ b/lib/custodian/protocol-tests/https.rb
@@ -130,6 +130,13 @@ class HTTPSTest
response = nil
+ #
+ # Ensure we have a trailing "/"
+ #
+ if ( url.path.empty? )
+ url.path = "/"
+ end
+
if nil == url.query
response = http.start { http.get(url.path) }
else