summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJudah Schvimer <judah@mongodb.com>2021-01-29 19:44:54 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-02-04 15:05:46 +0000
commit0431757da259bc5586d69477775319cb49346a0f (patch)
tree2a0f1de1068e1af53b4bb3f1b54fbcfdafe47f82
parentbbf5805c5876f4a4b7b699c853d03d0727c82241 (diff)
downloadmongo-0431757da259bc5586d69477775319cb49346a0f.tar.gz
SERVER-54091 Update assertion messages for dbhash check run by resmoke.py
(cherry picked from commit cada2662c229b72329a7fed7bf6ebfbcc9f740e1)
-rw-r--r--jstests/hooks/run_check_repl_dbhash_background.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/jstests/hooks/run_check_repl_dbhash_background.js b/jstests/hooks/run_check_repl_dbhash_background.js
index 50400f8b2c0..29caafbd03e 100644
--- a/jstests/hooks/run_check_repl_dbhash_background.js
+++ b/jstests/hooks/run_check_repl_dbhash_background.js
@@ -498,7 +498,8 @@ if (topology.type === Topology.kReplicaSet) {
}
returnData.forEach(res => {
- assert.commandWorked(res, () => 'data consistency checks failed: ' + tojson(res));
+ assert.commandWorked(
+ res, () => 'data consistency checks (point-in-time) failed: ' + tojson(res));
});
}
} else {