diff options
| author | Steve Kemp <steve@steve.org.uk> | 2012-11-26 12:39:51 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2012-11-26 12:39:51 +0000 | 
| commit | 79feadd58c93508e9329e221cffd06182ca10a6c (patch) | |
| tree | 09731f1c3c60e16a43fc66a12070098abe191449 | |
| parent | 66ab79e76aecc880ffd00704cb4abf63eb175ecd (diff) | |
  New release
| -rw-r--r-- | debian/changelog | 7 | ||||
| -rw-r--r-- | lib/custodian/protocoltest/http.rb | 1 | 
2 files changed, 8 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index e8e0fb9..1311932 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +custodian (0.3-2) stable; urgency=low + +  * Rejigged the HTTP/HTTPS test to avoid SSL validation. +  * Show malformed lines when failing to parse HTTP hosts + + -- Steve Kemp <steve@bytemark.co.uk>  Mon, 26 Nov 2012 12:40:21 +0000 +  custodian (0.3-1) stable; urgency=low    * Added a new alerter-type, "redis", which will not raise any diff --git a/lib/custodian/protocoltest/http.rb b/lib/custodian/protocoltest/http.rb index 265c1ea..81113c0 100644 --- a/lib/custodian/protocoltest/http.rb +++ b/lib/custodian/protocoltest/http.rb @@ -127,6 +127,7 @@ module Custodian                c.follow_location = true                c.max_redirects   = 10                c.ssl_verify_host = false +              c.ssl_verify_peer = false                c.timeout         = 20                c.perform                @status = c.response_code  | 
