Handle host pool serialization (exception for backward compatibility).

Fix recipients add
Initial work for alerts dispatching to recipients
This commit is contained in:
Alfredo Cardigliano 2020-07-23 06:22:17 +02:00
parent befc2ec821
commit 7ffb4df9a6
11 changed files with 128 additions and 37 deletions

View file

@ -2340,10 +2340,16 @@ function alert_utils.processAlertNotifications(now, periodic_frequency, force_ex
end
alert_endpoints.dispatchNotification(message, json_message)
-- TODO replace alert_endpoints.dispatchNotification with the below
-- notification_recipients.dispatchNotification(message, json_message)
::continue::
end
alert_endpoints.processNotifications(now, periodic_frequency)
-- TODO replace alert_endpoints.processNotifications with the below
-- notification_recipients.processNotifications(now, periodic_frequency)
end
-- ##############################################