We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75f1eba commit f0dac99Copy full SHA for f0dac99
.evergreen/scripts/setup-tests.py
@@ -189,8 +189,8 @@ def handle_test_env() -> None:
189
write_env("SINGLE_MONGOS_LB_URI", config["SERVERLESS_URI"])
190
write_env("MULTI_MONGOS_LB_URI", config["SERVERLESS_URI"])
191
elif test_name == "auth_oidc":
192
- DB_USER = config["OIDC_ADMIN_USER"]
193
- DB_PASSWORD = config["OIDC_ADMIN_PWD"]
+ DB_USER = os.environ["OIDC_ADMIN_USER"]
+ DB_PASSWORD = os.environ["OIDC_ADMIN_PWD"]
194
write_env("DB_IP", config["MONGODB_URI"])
195
elif test_name == "index_management":
196
config = read_env(f"{DRIVERS_TOOLS}/.evergreen/atlas/secrets-export.sh")
0 commit comments