diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | lib/custodian/settings.rb | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index fc6e63f..a497fc2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +custodian (0.24.2) stable; urgency=medium + + * Allow "ipv6_only" and "ipv4_only" to be added to tests. + + -- Steve Kemp <steve@bytemark.co.uk> Wed, 04 Mar 2015 10:00:01 +0000 + custodian (0.24.1) stable; urgency=medium * Updated to work with Ruby 1.8, and explictly convert the class diff --git a/lib/custodian/settings.rb b/lib/custodian/settings.rb index b2bdb04..74d6bfb 100644 --- a/lib/custodian/settings.rb +++ b/lib/custodian/settings.rb @@ -169,7 +169,7 @@ module Custodian def alerter _load() unless( _loaded? ) - @settings['alerter'] || "file" + @settings['alerter'] || "redis" end |