diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2014-12-11 12:40:39 +0000 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2014-12-11 12:40:39 +0000 |
commit | 0ea270705868ee1e849e32e28b30aa82caf25a0b (patch) | |
tree | 762b0b447d5028ad75a08460a611606a094e1855 /lib/custodian/settings.rb | |
parent | f4067536c87e0418a1bfce53183c7b16a3e484c1 (diff) |
Removed ruby1.8isms
Diffstat (limited to 'lib/custodian/settings.rb')
-rw-r--r-- | lib/custodian/settings.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/custodian/settings.rb b/lib/custodian/settings.rb index 2d4465d..453a35a 100644 --- a/lib/custodian/settings.rb +++ b/lib/custodian/settings.rb @@ -215,13 +215,13 @@ module Custodian # otherwise per-test defaults. case alert - when "smtp": + when "smtp" "root" - when "mauve": + when "mauve" "alert.bytemark.co.uk" - when "file": + when "file" "alerts.log" - when "redis": + when "redis" "127.0.0.1:6379" else nil |