diff options
author | Randolph Tan <randolph@10gen.com> | 2014-03-11 14:38:27 -0400 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2014-03-13 17:01:06 -0400 |
commit | 5bd9fa125cf91df4d9ec00eeb5e92cbcbf5db58e (patch) | |
tree | 64ca4b0a0e6a567cc4ac9cc9c89a798ca7a86c87 /buildscripts | |
parent | a53a7eec0594f065923a495a695cb5dde6679468 (diff) | |
download | mongo-5bd9fa125cf91df4d9ec00eeb5e92cbcbf5db58e.tar.gz |
SERVER-13188 Migrate aggregation 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 841382d8bac..30ac3aa4004 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: + if use_write_commands or "aggregation" in path: argv += ["--writeMode", "commands"] else: argv += ["--writeMode", shell_write_mode] |