Added description to AlarmUpdatedEvent

This commit is contained in:
Jonathan Halterman 2014-04-18 09:24:44 -07:00
parent 42a8f62fbb
commit dfb3c85305
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
<properties>
<computedVersion>${project.version}-${timestamp}-${buildNumber}</computedVersion>
<computedName>${project.artifactId}-${computedVersion}</computedName>
<mon.common.version>1.0.0.29</mon.common.version>
<mon.common.version>1.0.0.36</mon.common.version>
<dropwizard.version>0.7.0</dropwizard.version>
<skipITs>true</skipITs>

View File

@ -190,7 +190,7 @@ public class AlarmService {
// Notify interested parties of updated alarm
String event = Serialization.toJson(new AlarmUpdatedEvent(tenantId, alarmId, name,
expression, state, enabled, subExpressions.oldAlarmSubExpressions,
description, expression, state, enabled, subExpressions.oldAlarmSubExpressions,
subExpressions.changedSubExpressions, subExpressions.newAlarmSubExpressions));
producer.send(new KeyedMessage<>(config.eventsTopic, tenantId, event));
} catch (Exception e) {