0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 09:06:21 +01:00

SERVER-43395 Increase verbosity of COMMAND log component in speculative_majority_find.js

This commit is contained in:
William Schultz 2019-09-20 18:49:57 +00:00 committed by evergreen
parent 00bd5405df
commit fb928fe50f

View File

@ -19,7 +19,11 @@ let name = "speculative_majority_find";
let replTest = new ReplSetTest({
name: name,
nodes: [{}, {rsConfig: {priority: 0}}],
nodeOptions: {enableMajorityReadConcern: 'false'}
nodeOptions: {
enableMajorityReadConcern: 'false',
// Increase log verbosity so we can see all commands that run on the server.
setParameter: {logComponentVerbosity: tojson({command: 2})}
}
});
replTest.startSet();
replTest.initiate();