Skip to content

Commit

Permalink
Merge "Log cms_verify issues as warnings (not errors)."
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Jul 9, 2013
2 parents 6139663 + a4af27a commit 6d0afcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keystoneclient/common/cms.py
Expand Up @@ -41,7 +41,7 @@ def cms_verify(formatted, signing_cert_file_name, ca_file_name):
output, err = process.communicate(formatted)
retcode = process.poll()
if retcode:
LOG.error('Verify error: %s' % err)
LOG.warning('Verify error: %s' % err)
# NOTE(dmllr): Python 2.6 compatibility:
# CalledProcessError did not have output keyword argument
e = subprocess.CalledProcessError(retcode, "openssl")
Expand Down

0 comments on commit 6d0afcc

Please sign in to comment.