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:09:15 +0000
commit8ffe1e780d977f3e6a3f17c36f8273a0193df85c (patch)
tree232e6ccd23afa81322e606d982744df48a7eed64
parentce84ad3d2e159e7fda63242e47f5d1e6358ca7d1 (diff)
downloadmongo-8ffe1e780d977f3e6a3f17c36f8273a0193df85c.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 5ca777c44ba..c6788082811 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) {