From 23f75cf74ac73e2523a0632c889a69dbf2153293 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Tue, 27 Aug 2019 15:51:04 -0400 Subject: [PATCH] fix a bug introduced in rebase --- awx/main/models/notifications.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awx/main/models/notifications.py b/awx/main/models/notifications.py index 677991c88e..f21eb05a63 100644 --- a/awx/main/models/notifications.py +++ b/awx/main/models/notifications.py @@ -485,5 +485,6 @@ class JobNotificationMixin(object): def send_it(local_nt=nt, local_subject=notification_subject, local_body=notification_body): def _func(): send_notifications.delay([local_nt.generate_notification(local_subject, local_body).id], + job_id=self.id) return _func connection.on_commit(send_it())