fix crl storage config name

This commit is contained in:
dandds
2019-03-01 15:10:56 -05:00
parent 7fbb8d05e0
commit 44d52ae601
6 changed files with 8 additions and 6 deletions

View File

@@ -200,7 +200,7 @@ def make_crl_validator(app):
app.crl_cache = NoOpCRLCache(logger=app.logger)
else:
crl_locations = []
for filename in pathlib.Path(app.config["CRL_CONTAINER"]).glob("*.crl"):
for filename in pathlib.Path(app.config["CRL_STORAGE_CONTAINER"]).glob("*.crl"):
crl_locations.append(filename.absolute())
app.crl_cache = CRLCache(
app.config["CA_CHAIN"],