Details
Assignee
UnassignedUnassignedReporter
Vitor MoreiraVitor MoreiraLabels
Components
Priority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
Vitor Moreira
Vitor MoreiraLabels
Components
Priority
PagerDuty
PagerDuty
PagerDuty
Created May 18, 2017 at 10:07 AM
Updated September 21, 2021 at 6:22 PM
If there are >1 notifications for the same UEI with different destination-paths(DP), if one of the DPs doesn't have a single user, then the following notifications are not triggered.
Example:
one specific UEI
three destination-paths:
DP1, with user U1
DP2, without any user
DP3, with user U2
U1 will receive the notification but U2 will not, because of DP2.
Class:
org.opennms.netmgt.notifd.BroadcastEventProcessor
private void scheduleNoticesForEvent(Event event) { ... for (Notification notification : notifications) { ... if (getUserCount(targets, escalations) == 0) { ... return; } ... } }
The problem is related to the "return", should be "continue", as used previously in the code:
path = getDestinationPathManager().getPath(notification.getDestinationPath()); if (path == null) { LOG.warn("Unknown destination path {}. Please check the <destinationPath> tag for the notification {} in the notifications.xml file.", notification.getDestinationPath(), notification.getName()); // changing posted by Wiktor Wodecki // return; continue; }