WIFI-1221 Use the current time for the timestamp for Status Remove/Clear Event

This commit is contained in:
Lynn Shi
2020-12-18 13:36:38 -05:00
parent e8e6703c31
commit d008e5984b

View File

@@ -11,7 +11,7 @@ public class StatusRemovedEvent extends EquipmentEventWithPayload<Status> {
private static final long serialVersionUID = 7142208488887559985L;
public StatusRemovedEvent(Status status){
super(status.getCustomerId(), status.getEquipmentId(), status.getLastModifiedTimestamp(), status);
super(status.getCustomerId(), status.getEquipmentId(), System.currentTimeMillis(), status);
}
/**