Update requirements, handle more lemur_acme exceptions, and remove take a tour button
This commit is contained in:
parent
6500559f8e
commit
0bd14488bb
|
@ -304,7 +304,7 @@ class ACMEIssuerPlugin(IssuerPlugin):
|
|||
"cert": cert,
|
||||
"pending_cert": entry["pending_cert"],
|
||||
})
|
||||
except (PollError, AcmeError):
|
||||
except (PollError, AcmeError, Exception):
|
||||
current_app.logger.error("Unable to resolve pending cert: {}".format(pending_cert), exc_info=True)
|
||||
certs.append({
|
||||
"cert": False,
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
<div class="jumbotron">
|
||||
<span class="pull-right"><button class="btn btn-sm btn-primary">First Time? Take the Tour!</button></span>
|
||||
<h1>Hey there!</h1>
|
||||
<p>Welcome to Lemur! A central portal for all (most) of your TLS certificate needs. With Lemur you are able to create, deploy and track the TLS certificates in your environment. Lets get started!</p>
|
||||
</div>
|
||||
|
|
|
@ -10,7 +10,7 @@ certifi==2018.4.16 # via requests
|
|||
cfgv==1.0.0 # via pre-commit
|
||||
chardet==3.0.4 # via requests
|
||||
flake8==3.5.0
|
||||
identify==1.0.15 # via pre-commit
|
||||
identify==1.0.16 # via pre-commit
|
||||
idna==2.6 # via requests
|
||||
invoke==0.23.0
|
||||
mccabe==0.6.1 # via flake8
|
||||
|
@ -23,7 +23,7 @@ pyyaml==3.12 # via aspy.yaml, pre-commit
|
|||
requests-toolbelt==0.8.0 # via twine
|
||||
requests==2.18.4 # via requests-toolbelt, twine
|
||||
six==1.11.0 # via cfgv, pre-commit
|
||||
tqdm==4.23.2 # via twine
|
||||
tqdm==4.23.3 # via twine
|
||||
twine==1.11.0
|
||||
urllib3==1.22 # via requests
|
||||
virtualenv==15.2.0 # via pre-commit
|
||||
|
|
|
@ -7,9 +7,9 @@
|
|||
asn1crypto==0.24.0 # via cryptography
|
||||
attrs==18.1.0 # via pytest
|
||||
aws-xray-sdk==0.95 # via moto
|
||||
boto3==1.7.14 # via moto
|
||||
boto3==1.7.16 # via moto
|
||||
boto==2.48.0 # via moto
|
||||
botocore==1.10.14 # via boto3, moto, s3transfer
|
||||
botocore==1.10.16 # via boto3, moto, s3transfer
|
||||
certifi==2018.4.16 # via requests
|
||||
cffi==1.11.5 # via cryptography
|
||||
chardet==3.0.4 # via requests
|
||||
|
|
|
@ -13,8 +13,8 @@ asn1crypto==0.24.0 # via cryptography
|
|||
asyncpool==1.0
|
||||
bcrypt==3.1.4 # via flask-bcrypt, paramiko
|
||||
blinker==1.4 # via flask-mail, flask-principal, raven
|
||||
boto3==1.7.14
|
||||
botocore==1.10.14 # via boto3, s3transfer
|
||||
boto3==1.7.16
|
||||
botocore==1.10.16 # via boto3, s3transfer
|
||||
certifi==2018.4.16
|
||||
cffi==1.11.5 # via bcrypt, cryptography, pynacl
|
||||
click==6.7 # via flask
|
||||
|
|
Loading…
Reference in New Issue