Merge pull request #715 from dod-ccpo/diable-debug-seed-roles

disable debug output in seed_roles.py
This commit is contained in:
dandds 2019-03-19 10:36:05 -04:00 committed by GitHub
commit 6905ccc737
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,9 @@ def seed_roles():
if __name__ == "__main__":
config = make_config({"DISABLE_CRL_CHECK": True, "CRL_STORAGE_PROVIDER": "LOCAL"})
config = make_config(
{"DISABLE_CRL_CHECK": True, "CRL_STORAGE_PROVIDER": "LOCAL", "DEBUG": False}
)
app = make_app(config)
with app.app_context():
seed_roles()