From 97df122f23f29f864ed5c0205344f51f1717612d Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Wed, 4 May 2022 15:43:11 -0700 Subject: [PATCH] debug --- selfdrive/test/openpilotci.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/selfdrive/test/openpilotci.py b/selfdrive/test/openpilotci.py index e3bdd239c4..517eeb4462 100755 --- a/selfdrive/test/openpilotci.py +++ b/selfdrive/test/openpilotci.py @@ -18,6 +18,9 @@ def upload_file(path, name): print('CI', os.getenv('CI')) print('FILEREADER_CACHE', os.getenv('FILEREADER_CACHE')) print('AZURE_TOKEN_IN_ENV', "AZURE_TOKEN" in os.environ) + print('AZURE_TOKEN_TYPE', type(os.environ["AZURE_TOKEN"])) + if "AZURE_TOKEN" in os.environ and type(os.environ["AZURE_TOKEN"]) == str: + print('AZURE_TOKEN_LEN', len(os.environ["AZURE_TOKEN"])) sas_token = None if os.path.isfile(TOKEN_PATH):