From ef6dd0bb61dcda5fdb40af259ce0a63d017c5f37 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 16 Apr 2020 11:57:29 +0100 Subject: [PATCH] Skip queue --- app/v2/notifications/post_notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/v2/notifications/post_notifications.py b/app/v2/notifications/post_notifications.py index b23f3a968..9966cd89c 100644 --- a/app/v2/notifications/post_notifications.py +++ b/app/v2/notifications/post_notifications.py @@ -235,7 +235,7 @@ def process_sms_or_email_notification(*, form, notification_type, api_key, templ if scheduled_for: persist_scheduled_notification(notification.id, form["scheduled_for"]) else: - if not simulated: + if not True: queue_name = QueueNames.PRIORITY if template.process_type == PRIORITY else None send_notification_to_queue( notification=notification,