From f44fe815739d404abb3d8df203be0df5eb08934c Mon Sep 17 00:00:00 2001 From: pincushionman Date: Tue, 20 Feb 2018 10:28:11 -0600 Subject: [PATCH] fix for https://github.com/Netflix/lemur/issues/1045 (#1056) --- lemur/sources/service.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lemur/sources/service.py b/lemur/sources/service.py index a1c19e4b..9e6ce289 100644 --- a/lemur/sources/service.py +++ b/lemur/sources/service.py @@ -140,6 +140,8 @@ def sync_certificates(source, user): for e in exists: if certificate.get('external_id'): e.external_id = certificate['external_id'] + if certificate.get('authority_id'): + e.authority_id = certificate['authority_id'] certificate_update(e, source) updated += 1