File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
jstests/concurrency/fsm_workloads_add_remove_shards Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,8 +66,8 @@ export const $config = (function() {
66
66
addShard: function addShard(db, collName) {
67
67
const shardIdx = randomInt(this.shardList.length);
68
68
const shardEntry = this.shardList[shardIdx];
69
- assert.commandWorked(
70
- db.adminCommand({addShard: shardEntry.host, name: shardEntry._id}) );
69
+ // TODO SERVER-83532 Check that the outcome of addShard meets expectations.
70
+ db.adminCommand({addShard: shardEntry.host, name: shardEntry._id});
71
71
},
72
72
73
73
init: function(db, collName) {
@@ -98,7 +98,7 @@ export const $config = (function() {
98
98
}
99
99
100
100
return {
101
- threadCount: 100 ,
101
+ threadCount: 20 ,
102
102
iterations: 1000,
103
103
startState: "init",
104
104
states: states,
You can’t perform that action at this time.
0 commit comments