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

@@ -22,7 +22,9 @@ def app(request):
upload_dir = TemporaryDirectory()
config = make_config()
config.update({"STORAGE_CONTAINER": upload_dir.name})
config.update(
{"STORAGE_CONTAINER": upload_dir.name, "CRL_STORAGE_PROVIDER": "LOCAL"}
)
_app = make_app(config)