disable CRL checks in other scripts

This commit is contained in:
dandds 2019-01-18 09:55:38 -05:00
parent 4bd41950c6
commit 44faf33017
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ from atst.app import make_config, make_app
from atst.eda_client import EDAClient
config = make_config()
config = make_config({"DISABLE_CRL_CHECK": True})
client = EDAClient(
base_url=config.get("EDA_HOST"),

View File

@ -19,7 +19,7 @@ def get_pe_numbers(url):
if __name__ == "__main__":
config = make_config()
config = make_config({"DISABLE_CRL_CHECK": True})
url = config["PE_NUMBER_CSV_URL"]
print("Fetching PE numbers from {}".format(url))
pe_numbers = get_pe_numbers(url)