summaryrefslogtreecommitdiff
path: root/jstests/replsets/awaitable_hello_fcv_change.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/replsets/awaitable_hello_fcv_change.js')
-rw-r--r--jstests/replsets/awaitable_hello_fcv_change.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/jstests/replsets/awaitable_hello_fcv_change.js b/jstests/replsets/awaitable_hello_fcv_change.js
index 3af3922b754..cf5b31baf57 100644
--- a/jstests/replsets/awaitable_hello_fcv_change.js
+++ b/jstests/replsets/awaitable_hello_fcv_change.js
@@ -175,6 +175,9 @@ function runTest(downgradeFCV) {
rst.awaitReplication();
checkFCV(primaryAdminDB, downgradeFCV);
checkFCV(secondaryAdminDB, downgradeFCV);
+ // The new configuration may not have been installed on the secondary yet, though it has reached
+ // the secondary.
+ rst.waitForConfigReplication(primary);
// All hello requests should have been responded to after the FCV change.
numAwaitingTopologyChangeOnPrimary =
@@ -260,6 +263,9 @@ function runTest(downgradeFCV) {
rst.awaitReplication();
checkFCV(primaryAdminDB, lastLTSFCV);
checkFCV(secondaryAdminDB, lastLTSFCV);
+ // The new configuration may not have been installed on the secondary yet, though it has
+ // reached the secondary.
+ rst.waitForConfigReplication(primary);
primaryResponseAfterDowngrade = helloAsInternalClient();
assert(primaryResponseAfterDowngrade.hasOwnProperty("topologyVersion"),