summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoustafa Maher Khalil <m.maher@mongodb.com>2021-10-18 21:36:17 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-10-18 23:47:49 +0000
commite7aaf52d138c60e6b9fb7a3566c48469c4bfd3dc (patch)
tree6937de87b2c335e7b15837b9aca232426f56ac3d
parent07b8851825836911265e909d6842d4586832f9bb (diff)
downloadmongo-e7aaf52d138c60e6b9fb7a3566c48469c4bfd3dc.tar.gz
SERVER-59672 change rsSyncApplyStop failpoint's enabled log
-rw-r--r--jstests/replsets/step_down_during_draining3.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/jstests/replsets/step_down_during_draining3.js b/jstests/replsets/step_down_during_draining3.js
index eca54a62745..0de1a4c395e 100644
--- a/jstests/replsets/step_down_during_draining3.js
+++ b/jstests/replsets/step_down_during_draining3.js
@@ -34,7 +34,8 @@ function enableFailPoint(node) {
assert.commandWorked(
node.adminCommand({configureFailPoint: 'rsSyncApplyStop', mode: 'alwaysOn'}));
// Wait for Oplog Applier to hang on the failpoint.
- checkLog.contains(node, "Oplog Applier - rsSyncApplyStop fail point enabled.");
+ checkLog.contains(node,
+ "rsSyncApplyStop fail point enabled. Blocking until fail point is disabled");
}
function disableFailPoint(node) {