From b4b7c75ff0a0f6beec6e64fb6fd75e3acdd0f356 Mon Sep 17 00:00:00 2001 From: u79923 Date: Mon, 10 Jul 2023 15:57:53 +1000 Subject: [PATCH] Troubleshoot load all vocabs test workflow #6. --- scripts/load_all_vocabs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/load_all_vocabs.py b/scripts/load_all_vocabs.py index d56d1b7..fff402d 100644 --- a/scripts/load_all_vocabs.py +++ b/scripts/load_all_vocabs.py @@ -8,7 +8,9 @@ ENDPOINT = f"{BASE_DB_URI}/statements" print(ENDPOINT) DB_USERNAME = os.environ.get("DB_USERNAME", None) +print(DB_USERNAME) DB_PASSWORD = os.environ.get("DB_PASSWORD", None) +print(DB_PASSWORD) # get a list of pathname strings of all the turtle files in the vocabularies folder voc_strings = glob.glob(str(Path(__file__).parent.parent / "vocabularies") + "/*.ttl")