summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2020-04-24 12:40:52 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-04-24 19:10:57 +0000
commitbd8fdecf83f7de4fd73c0e0e3273865170bd80f9 (patch)
treea4b12a2c75a8cff8c2b10814892f0594abee0074 /jstests
parent111907e47c8b1b3fb2de31308ff3328cb13b8bd3 (diff)
downloadmongo-bd8fdecf83f7de4fd73c0e0e3273865170bd80f9.tar.gz
SERVER-47754 Allow background validation to run on storage engines that do not support checkpoints
(cherry picked from commit 560b266f41b1507ddb09cf6dfd61f26ca60b89b7)
Diffstat (limited to 'jstests')
-rw-r--r--jstests/hooks/run_validate_collections_background.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/jstests/hooks/run_validate_collections_background.js b/jstests/hooks/run_validate_collections_background.js
index 778ee791002..89c8f2fcc21 100644
--- a/jstests/hooks/run_validate_collections_background.js
+++ b/jstests/hooks/run_validate_collections_background.js
@@ -67,12 +67,6 @@ const validateCollectionsBackgroundThread = function validateCollectionsBackgrou
conn,
"Failed to connect to host '" + host + "' for background collection validation");
- if (!conn.adminCommand("serverStatus").storageEngine.supportsCheckpointCursors) {
- print("Skipping background validation against test node: " + host +
- " because its storage engine does not support background validation (checkpoints).");
- return {ok: 1};
- }
-
// Filter out arbiters.
if (conn.adminCommand({isMaster: 1}).arbiterOnly) {
print("Skipping background validation against test node: " + host +