From 49d1127698409abeb7458f32c9093ed12f0522dd Mon Sep 17 00:00:00 2001 From: Yulya Artyukhina Date: Wed, 17 Jul 2024 19:00:26 +0200 Subject: [PATCH] Fix `send_bundled_notification` task (#4696) # What this PR does Fix scheduling `perform_notification` from `send_bundled_notification` task - leftover after resolving merge conflict ## Checklist - [ ] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] Added the relevant release notes label (see labels prefixed w/ `release:`). These labels dictate how your PR will show up in the autogenerated release notes. --- engine/apps/alerts/tasks/notify_user.py | 1 + 1 file changed, 1 insertion(+) diff --git a/engine/apps/alerts/tasks/notify_user.py b/engine/apps/alerts/tasks/notify_user.py index bbcec36d..8258da19 100644 --- a/engine/apps/alerts/tasks/notify_user.py +++ b/engine/apps/alerts/tasks/notify_user.py @@ -626,6 +626,7 @@ def send_bundled_notification(user_notification_bundle_id: int): schedule_perform_notification_task, log_record_notification_triggered.pk, log_record_notification_triggered.alert_group_id, + False, ) ) notifications.delete()