summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Shuvalov <andrew.shuvalov@mongodb.com>2021-10-22 19:51:29 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-10-22 20:05:34 +0000
commit7bebe91ec9aecb5db917728ba40ce3881457f10a (patch)
tree00f0de8c03a80fcfca41148b172fd63e52d69288
parent44ee18e902f70adb479d5996977dae3afadd17b9 (diff)
downloadmongo-7bebe91ec9aecb5db917728ba40ce3881457f10a.tar.gz
SERVER-60934 Increase RSM verbosity in the test change_stream_shard_failover
-rw-r--r--jstests/sharding/change_stream_shard_failover.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/jstests/sharding/change_stream_shard_failover.js b/jstests/sharding/change_stream_shard_failover.js
index 1c276f7e8a9..898e124917f 100644
--- a/jstests/sharding/change_stream_shard_failover.js
+++ b/jstests/sharding/change_stream_shard_failover.js
@@ -25,6 +25,15 @@ TestData.skipCheckingUUIDsConsistentAcrossCluster = true;
rs: {nodes: 3, setParameter: {periodicNoopIntervalSecs: 1, writePeriodicNoops: true}}
});
+ const verbosityFn = function(conn) {
+ assert.commandWorked(
+ conn.adminCommand({setParameter: 1, logComponentVerbosity: {network: {verbosity: 2}}}));
+
+ };
+ st.rs0.nodes.forEach(verbosityFn);
+ st.rs1.nodes.forEach(verbosityFn);
+ verbosityFn(st.s);
+
const sDB = st.s.getDB("test");
const kCollName = "change_stream_failover";