Compare commits

...

2 Commits

Author SHA1 Message Date
Abhishek Kumar 39fd0e4cc4
Merge 21a7973987 into cd5bb09d0d 2026-01-22 09:59:54 +00:00
Abhishek Kumar 21a7973987 alert: fix type ID for alerts
ALERT.VM.SNAPSHOT, ALERT.VR.PUBLIC.IFACE.MTU and
ALERT.VR.PRIVATE.IFACE.MTU are all having type value 32.

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
2025-07-30 17:50:37 +05:30
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ public interface AlertService {
public static final AlertType ALERT_TYPE_HA_ACTION = new AlertType((short)30, "ALERT.HA.ACTION", true);
public static final AlertType ALERT_TYPE_CA_CERT = new AlertType((short)31, "ALERT.CA.CERT", true);
public static final AlertType ALERT_TYPE_VM_SNAPSHOT = new AlertType((short)32, "ALERT.VM.SNAPSHOT", true);
public static final AlertType ALERT_TYPE_VR_PUBLIC_IFACE_MTU = new AlertType((short)32, "ALERT.VR.PUBLIC.IFACE.MTU", true);
public static final AlertType ALERT_TYPE_VR_PRIVATE_IFACE_MTU = new AlertType((short)32, "ALERT.VR.PRIVATE.IFACE.MTU", true);
public static final AlertType ALERT_TYPE_VR_PUBLIC_IFACE_MTU = new AlertType((short)33, "ALERT.VR.PUBLIC.IFACE.MTU", true);
public static final AlertType ALERT_TYPE_VR_PRIVATE_IFACE_MTU = new AlertType((short)34, "ALERT.VR.PRIVATE.IFACE.MTU", true);
public short getType() {
return type;