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 8bed91f commit 4395ef7Copy full SHA for 4395ef7
.evergreen/config.yml
@@ -533,6 +533,17 @@ functions:
533
fi
534
535
536
+ # Verify that the required LB URI env vars are set to ensure that the test runner can correctly connect to
537
+ # the LBs.
538
+ if [ ! -z ${SINGLE_MONGOS_LB_URI} ]; then
539
+ echo "SINGLE_MONGOS_LB_URI" must be set for testing against LBs"
540
+ exit 1
541
+ fi
542
+ if [ ! -z ${MULTI_MONGOS_LB_URI} ]; then
543
+ echo "MULTI_MONGOS_LB_URI must be set for testing against LBs"
544
545
546
+
547
# Per the LB testing spec, the URI of an LB fronting a single mongos should be used to configure internal
548
# testing Client instances, so we set MONGODB_URI to SINGLE_MONGOS_LB_URI.
549
0 commit comments