summaryrefslogtreecommitdiff
path: root/jstests/auth/user_management_commands_sharded_wc_1.js
blob: f5dd22226366d149639af25af2519048763d5675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * @tags: [requires_sharding]
 */

(function() {
    'use strict';

    load('jstests/auth/user_management_commands_lib.js');

    // TODO: Remove 'shardAsReplicaSet: false' when SERVER-32672 is fixed.
    var st = new ShardingTest(
        {shards: 2, config: 3, keyFile: 'jstests/libs/key1', other: {shardAsReplicaSet: false}});
    runAllUserManagementCommandsTests(st.s, {w: 1});
    st.stop();
})();