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 | b0b13535196a8746ee0a938dd9fd9c5a0dbcfca2 (patch) | |
tree | b5f88a9d5d0786b33341de19ffc527be1a703ee5 /lib/custodian/settings.rb | |
parent | 3043df7ef0005e90aa0b78269b0f06c40bde5cf8 (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 |