diff options
author | Randolph Tan <randolph@10gen.com> | 2014-03-03 11:27:18 -0500 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2014-03-14 12:06:02 -0400 |
commit | 8c92b5ae5891b171bbdffee0b62d2135eb89bba9 (patch) | |
tree | 3767ae10c66549527ffc9f03db69d15cc40cfaf3 /buildscripts | |
parent | 3b7aae27fef10e3359ea6164164e827ff5407c61 (diff) | |
download | mongo-8c92b5ae5891b171bbdffee0b62d2135eb89bba9.tar.gz |
SERVER-13190 migrate replset jstest suite to use write commands api
Diffstat (limited to 'buildscripts')
-rwxr-xr-x | buildscripts/smoke.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py index 30ac3aa4004..263f7bad7d2 100755 --- a/buildscripts/smoke.py +++ b/buildscripts/smoke.py @@ -469,7 +469,7 @@ def runTest(test, result): path = argv[1] elif ext == ".js": argv = [shell_executable, "--port", mongod_port, '--authenticationMechanism', authMechanism] - if use_write_commands or "aggregation" in path: + if use_write_commands or "aggregation" in path or "replsets" in path: argv += ["--writeMode", "commands"] else: argv += ["--writeMode", shell_write_mode] |