Fixing an issue were aws certificates plugins might not have a chain. (#512)

This commit is contained in:
kevgliss
2016-11-17 14:47:10 -08:00
committed by GitHub
parent 2130029f90
commit a616310eb7
4 changed files with 8 additions and 5 deletions

View File

@ -94,4 +94,4 @@ def digest_aws_cert_response(response):
if 'certificate_chain' in cert:
chain = cert['certificate_chain']
return str(body), str(chain),
return body, chain