summaryrefslogtreecommitdiff
path: root/jstests/auth/user_management_commands_sharded_wc_1.js
blob: 675efba731a836c5667c66367a06040946c0d7b7 (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();
})();