diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-12-10 13:22:26 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-12-10 13:22:26 +0000 |
commit | d452822176afe6c678ca8b8e5e7e98cb44986893 (patch) | |
tree | f1ba84e9623aaeed840e01df7133764af08b628d /lib | |
parent | 9bcae26bd674ae921d2c0a9d4e4f6a7c727ba61a (diff) |
Use the parser-input as the alert-id
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/alerts/mauve.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/alerts/mauve.rb b/lib/custodian/alerts/mauve.rb index 7c2c89d..31cb874 100644 --- a/lib/custodian/alerts/mauve.rb +++ b/lib/custodian/alerts/mauve.rb @@ -172,7 +172,7 @@ module Custodian alert = Mauve::Proto::Alert.new - alert.id = "#{test_type}-#{test_host}" + alert.id = test.to_s alert.subject = subject alert.summary = "The #{test_type} test failed against #{test_host}" |