diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-14 10:12:12 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-14 10:12:12 +0000 |
commit | b476e5ddb544c6911b4a4bd8c8bba30bebcc6cac (patch) | |
tree | 451d170c71f4574a4d8317c80c79ee1a8d5b090d | |
parent | aa294ee289e84a2c9314ff2672e1e266ab08d103 (diff) |
Don't replace alert
-rwxr-xr-x | bin/custodian-dequeue | 9 | ||||
-rw-r--r-- | debian/changelog | 6 |
2 files changed, 13 insertions, 2 deletions
diff --git a/bin/custodian-dequeue b/bin/custodian-dequeue index dbd545a..0405955 100755 --- a/bin/custodian-dequeue +++ b/bin/custodian-dequeue @@ -95,7 +95,9 @@ class Alert update = Mauve::Proto::AlertUpdate.new update.alert = [] update.source = "custodian" - update.replace = true + + # be explicit about raising/clearing + update.replace = false alert = Mauve::Proto::Alert.new @@ -121,7 +123,10 @@ class Alert update = Mauve::Proto::AlertUpdate.new update.alert = [] update.source = "custodian" - update.replace = true + + # be explicit about raising/clearing + update.replace = false + alert = Mauve::Proto::Alert.new diff --git a/debian/changelog b/debian/changelog index 75387af..9315f4b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +custodian (2012:1114-4) stable; urgency=low + + * Don't replace alerts. + + -- Steve Kemp <steve@bytemark.co.uk> Wed, 14 Nov 2012 10:12:00 +0000 + custodian (2012:1114-3) stable; urgency=low * Strings are not my friend - interpolate the ID correctly |