Skip to content

Commit bc6af39

Browse files
committed
debug ecs
1 parent 2b75430 commit bc6af39

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

.evergreen/run-azurekms-fail-test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
set -o errexit # Exit the script with error if any of the commands fail
33
HERE=$(dirname ${BASH_SOURCE:-$0})
44
. $DRIVERS_TOOLS/.evergreen/csfle/azurekms/setup-secrets.sh
5+
export LIBMONGOCRYPT_URL=https://s3.amazonaws.com/mciuploads/libmongocrypt/debian11/master/latest/libmongocrypt.tar.gz
56
bash $HERE/just.sh setup-test kms azure-fail
67
PYTHON_BINARY=/opt/mongodbtoolchain/v4/bin/python3 \
78
KEY_NAME="${AZUREKMS_KEYNAME}" \

.evergreen/scripts/setup-tests.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,11 @@ def handle_test_env() -> None:
130130
if test_name in SUB_TEST_REQUIRED and not sub_test_name:
131131
raise ValueError(f"Test '{test_name}' requires a sub_test_name")
132132
AUTH = os.environ.get("AUTH", "noauth")
133+
LOGGER.info(f"HI, {AUTH=}") # TODO remove
133134
if opts.auth or "auth" in test_name:
134135
# Only 'auth_aws ecs' shouldn't have extra auth set.
135136
if not (test_name == "auth_aws" and sub_test_name == "ecs"):
137+
LOGGER.info(f"Why am I setting this? '{sub_test_name=}'")
136138
AUTH = "auth"
137139
SSL = os.environ.get("SSL", "nossl")
138140
if opts.ssl:

0 commit comments

Comments
 (0)