diff options
author | Scott Hernandez <scotthernandez@gmail.com> | 2015-07-16 17:59:45 -0400 |
---|---|---|
committer | Scott Hernandez <scotthernandez@gmail.com> | 2015-07-20 17:10:13 -0400 |
commit | 4d5b80ab7f0690908475919fbd52ec4459b363f7 (patch) | |
tree | 4e58997cf160560f0e94dbc99ea09d9594ab877b /jstests/slow2 | |
parent | 63fb7ac01638dfb81c1bca170ae58dc6ca276f4b (diff) | |
download | mongo-4d5b80ab7f0690908475919fbd52ec4459b363f7.tar.gz |
SERVER-18982: do inserts as inserts in replication
Diffstat (limited to 'jstests/slow2')
-rw-r--r-- | jstests/slow2/sharding_jscore_passthrough.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/slow2/sharding_jscore_passthrough.js b/jstests/slow2/sharding_jscore_passthrough.js index e96bfb48911..dd05d941dc8 100644 --- a/jstests/slow2/sharding_jscore_passthrough.js +++ b/jstests/slow2/sharding_jscore_passthrough.js @@ -24,7 +24,7 @@ var db; // Notes: - // apply_ops1, apply_ops2: nothing works, dunno why yet. SERVER-1439. + // apply_ops*: mongos doesn't implement "applyOps" -- SERVER-1439. // copydb, copydb2: copyDatabase seems not to work at all in // the ShardingTest setup. SERVER-1440. @@ -96,7 +96,6 @@ var db; // These are bugs (some might be fixed now): var mightBeFixedPattern = new RegExp('[\\/\\\\](' + - 'apply_ops[12]|' + 'count5|' + 'cursor8|' + 'or4|' + @@ -111,6 +110,7 @@ var db; // These aren't supposed to get run under sharding: var notForShardingPattern = new RegExp('[\\/\\\\](' + + 'apply_ops.*|' + // mongos has no applyOps cmd 'dbadmin|' + 'error1|' + 'fsync|' + |