summaryrefslogtreecommitdiff
path: root/jstests/hooks
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-01 15:10:50 +0000
commitcada2662c229b72329a7fed7bf6ebfbcc9f740e1 (patch)
tree932a265dd47e519860ed73a2d2857740c0bb4ad6 /jstests/hooks
parent522299492aa5a78339aa8ebb07e88e567ba125d7 (diff)
downloadmongo-cada2662c229b72329a7fed7bf6ebfbcc9f740e1.tar.gz
SERVER-54091 Update assertion messages for dbhash check run by resmoke.py
Diffstat (limited to 'jstests/hooks')
-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 04cfd30fcd7..e8e771fe4fd 100644
--- a/jstests/hooks/run_check_repl_dbhash_background.js
+++ b/jstests/hooks/run_check_repl_dbhash_background.js
@@ -505,7 +505,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 {