Fixing issue with a certificate with no role not being viewable

This commit is contained in:
kevgliss 2015-08-21 16:08:53 -07:00
parent 4b9a05198c
commit 4b7a55c89f
2 changed files with 7 additions and 7 deletions

View File

@ -446,8 +446,7 @@ class CertificatePrivateKey(AuthenticatedResource):
role = role_service.get_by_name(cert.owner)
if role:
permission = ViewKeyPermission(certificate_id, role.name)
permission = ViewKeyPermission(certificate_id, getattr(role, 'name', None))
if permission.can():
response = make_response(jsonify(key=cert.private_key), 200)

View File

@ -17,4 +17,5 @@ def get_key():
try:
return current_app.config.get('LEMUR_ENCRYPTION_KEY').strip()
except RuntimeError:
print("No Encryption Key Found")
return ''