diff options
| author | Steve Kemp <steve@steve.org.uk> | 2012-11-14 10:36:35 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2012-11-14 10:36:35 +0000 | 
| commit | c0de01758694e6f0771177f412488712671e7688 (patch) | |
| tree | b5865bb3570f8ebe75bc8ba8b401ae101c1ec73e | |
| parent | b476e5ddb544c6911b4a4bd8c8bba30bebcc6cac (diff) | |
  Removed the -low suffix from alert IDs
| -rwxr-xr-x | bin/custodian-dequeue | 12 | ||||
| -rw-r--r-- | debian/changelog | 6 | 
2 files changed, 12 insertions, 6 deletions
| diff --git a/bin/custodian-dequeue b/bin/custodian-dequeue index 0405955..a02a75c 100755 --- a/bin/custodian-dequeue +++ b/bin/custodian-dequeue @@ -101,9 +101,9 @@ class Alert      alert            = Mauve::Proto::Alert.new -    # e.g. ping-example.vm.bytemark.co.uk-low -    # e.g. http-http://example.com/page1-low -    alert.id         = "#{@details['test_type']}-#{@details['target_host']}-low" +    # e.g. ping-example.vm.bytemark.co.uk +    # e.g. http-http://example.com/page1 +    alert.id         = "#{@details['test_type']}-#{@details['target_host']}"      alert.subject    = @details['target_host']      alert.summary    = @details['test_alert'] @@ -130,9 +130,9 @@ class Alert      alert            = Mauve::Proto::Alert.new -    # e.g. ping-example.vm.bytemark.co.uk-low -    # e.g. http-http://example.com/page1-low -    alert.id         = "#{@details['test_type']}-#{@details['target_host']}-low" +    # e.g. ping-example.vm.bytemark.co.uk +    # e.g. http-http://example.com/page1 +    alert.id         = "#{@details['test_type']}-#{@details['target_host']}"      alert.subject    = @details['target_host']      alert.summary    = @details['test_alert'] diff --git a/debian/changelog b/debian/changelog index 9315f4b..d95c3d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +custodian (2012:1114-5) stable; urgency=low + +  * Removed the -low suffix from alerts. + + -- Steve Kemp <steve@bytemark.co.uk>  Wed, 14 Nov 2012 10:36:00 +0000 +  custodian (2012:1114-4) stable; urgency=low    * Don't replace alerts. | 
