diff options
author | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2020-04-24 12:40:52 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-04-24 18:59:03 +0000 |
commit | 560b266f41b1507ddb09cf6dfd61f26ca60b89b7 (patch) | |
tree | 4b930130c226a2231e2e834aaa9cccd4a2d6d8c0 /jstests/hooks | |
parent | 73070916d377b5196d7a75528606b905f28c990b (diff) | |
download | mongo-560b266f41b1507ddb09cf6dfd61f26ca60b89b7.tar.gz |
SERVER-47754 Allow background validation to run on storage engines that do not support checkpoints
Diffstat (limited to 'jstests/hooks')
-rw-r--r-- | jstests/hooks/run_validate_collections_background.js | 6 |
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 bc66d978345..9e0ca571d9b 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 + |