Notifications aren't delivered if a destination-path has no users/targets

Description

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; }

Acceptance / Success Criteria

None

Lucidchart Diagrams

Activity

Show:

Details

Assignee

Reporter

Labels

Affects versions

Priority

PagerDuty

Created May 18, 2017 at 10:07 AM
Updated September 21, 2021 at 6:22 PM

Flag notifications