From 77a1600c138512f1e7df05e875740814d02f02af Mon Sep 17 00:00:00 2001 From: Curtis Castrapel Date: Tue, 27 Feb 2018 10:57:43 -0800 Subject: [PATCH] Fix cloned notifications --- lemur/certificates/schemas.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lemur/certificates/schemas.py b/lemur/certificates/schemas.py index 9547a373..4753a7be 100644 --- a/lemur/certificates/schemas.py +++ b/lemur/certificates/schemas.py @@ -47,9 +47,8 @@ class CertificateCreationSchema(CertificateSchema): if not data['notifications']: notification_name = "DEFAULT_{0}".format(data['owner'].split('@')[0].upper()) data['notifications'] += notification_service.create_default_expiration_notifications(notification_name, [data['owner']]) - - notification_name = 'DEFAULT_SECURITY' - data['notifications'] += notification_service.create_default_expiration_notifications(notification_name, current_app.config.get('LEMUR_SECURITY_TEAM_EMAIL')) + notification_name = 'DEFAULT_SECURITY' + data['notifications'] += notification_service.create_default_expiration_notifications(notification_name, current_app.config.get('LEMUR_SECURITY_TEAM_EMAIL')) return data