Fix typo in the files

Change-Id: I166e9e75aa1716b3151164e06d6664348084cf02
This commit is contained in:
zhangyanxian 2016-07-14 02:22:54 +00:00
parent c2b82a0849
commit 2c134db4ad
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ openssl genrsa -passout pass:foobar -des3 -out private/cakey.pem 2048
echo "You will be asked to enter some information about the certificate."
openssl req -x509 -passin pass:foobar -new -nodes -key private/cakey.pem -config $OPEN_SSL_CONF -subj "/C=US/ST=Denial/L=Springfield/O=Dis/CN=www.example.com" -out ca_01.pem
echo "Here is the certifcate"
echo "Here is the certificate"
openssl x509 -in ca_01.pem -text -noout

View File

@ -121,7 +121,7 @@ class CertRotation(object):
LOG.debug("Cert expired amphora's id is: %s", amp.id)
executor.submit(self.cw.amphora_cert_rotation, amp.id)
if rotation_count > 0:
LOG.info(_LI("Rotated certificates for %s ampohra") %
LOG.info(_LI("Rotated certificates for %s amphora") %
rotation_count)
finally:
executor.shutdown(wait=True)