diff options
author | Jack Mulrow <jack.mulrow@mongodb.com> | 2019-04-12 14:35:00 -0400 |
---|---|---|
committer | Jack Mulrow <jack.mulrow@mongodb.com> | 2019-04-15 12:24:25 -0400 |
commit | 7ceeb459f10e57b843eddf1c28a7565d1aaf3bba (patch) | |
tree | bb97b01c7690516e67eae8ddf5d6ceba0169fe6e /jstests | |
parent | 3a4a0a95eaf8711206b1174f7a70042c51b01676 (diff) | |
download | mongo-7ceeb459f10e57b843eddf1c28a7565d1aaf3bba.tar.gz |
SERVER-40624 Ensure a chunk is moved to each shard in snapshot_cursor_commands_mongos.js all shard reads case
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/sharding/snapshot_cursor_commands_mongos.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/snapshot_cursor_commands_mongos.js b/jstests/sharding/snapshot_cursor_commands_mongos.js index bd776bdef9f..d8363820fc5 100644 --- a/jstests/sharding/snapshot_cursor_commands_mongos.js +++ b/jstests/sharding/snapshot_cursor_commands_mongos.js @@ -85,7 +85,7 @@ const ns = dbName + '.' + shardedCollName; assert.commandWorked(st.splitAt(ns, {_id: 4})); - assert.commandWorked(st.splitAt(ns, {_id: 8})); + assert.commandWorked(st.splitAt(ns, {_id: 7})); assert.commandWorked( mongos.adminCommand({moveChunk: ns, find: {_id: 0}, to: st.shard0.shardName})); |