mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-23 15:56:45 -04:00
Remove the extra task created to handle the change to the send_email signature
This commit is contained in:
@@ -288,12 +288,6 @@ def send_sms(service_id, notification_id, encrypted_notification, created_at):
|
|||||||
|
|
||||||
|
|
||||||
@notify_celery.task(name="send-email")
|
@notify_celery.task(name="send-email")
|
||||||
def send_email_v1(service_id, notification_id, from_address,
|
|
||||||
encrypted_notification, created_at, reply_to_addresses=None):
|
|
||||||
send_email(service_id, notification_id, encrypted_notification, created_at, reply_to_addresses=None)
|
|
||||||
|
|
||||||
|
|
||||||
@notify_celery.task(name="send-email-v2")
|
|
||||||
def send_email(service_id, notification_id, encrypted_notification, created_at, reply_to_addresses=None):
|
def send_email(service_id, notification_id, encrypted_notification, created_at, reply_to_addresses=None):
|
||||||
task_start = monotonic()
|
task_start = monotonic()
|
||||||
notification = encryption.decrypt(encrypted_notification)
|
notification = encryption.decrypt(encrypted_notification)
|
||||||
|
|||||||
Reference in New Issue
Block a user