summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrevor Guidry <trevor.guidry@mongodb.com>2022-12-09 00:27:30 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-12-12 16:48:03 +0000
commit003fb8447adfb81705a8cc48fbdd6533381a61fa (patch)
tree7122e1f3dff8dee7fcca2323a997efc3f3b224df
parentd94b9f177bb3e0463e9e8c4d75f4a51e417872ef (diff)
downloadmongo-003fb8447adfb81705a8cc48fbdd6533381a61fa.tar.gz
SERVER-71984 add directConnection=True to standalone.py for multiversion testing
-rw-r--r--buildscripts/resmokelib/testing/fixtures/standalone.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/resmokelib/testing/fixtures/standalone.py b/buildscripts/resmokelib/testing/fixtures/standalone.py
index 8977bd65495..ea5f70783d7 100644
--- a/buildscripts/resmokelib/testing/fixtures/standalone.py
+++ b/buildscripts/resmokelib/testing/fixtures/standalone.py
@@ -179,7 +179,7 @@ class MongoDFixture(interface.Fixture):
def get_driver_connection_url(self):
"""Return the driver connection URL."""
- return "mongodb://" + self.get_internal_connection_string()
+ return "mongodb://" + self.get_internal_connection_string() + "/?directConnection=true"
# The below parameters define the default 'logComponentVerbosity' object passed to mongod processes