summaryrefslogtreecommitdiff
path: root/buildscripts
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 18:59:03 +0000
commit560b266f41b1507ddb09cf6dfd61f26ca60b89b7 (patch)
tree4b930130c226a2231e2e834aaa9cccd4a2d6d8c0 /buildscripts
parent73070916d377b5196d7a75528606b905f28c990b (diff)
downloadmongo-560b266f41b1507ddb09cf6dfd61f26ca60b89b7.tar.gz
SERVER-47754 Allow background validation to run on storage engines that do not support checkpoints
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/resmokelib/testing/hooks/validate_background.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/buildscripts/resmokelib/testing/hooks/validate_background.py b/buildscripts/resmokelib/testing/hooks/validate_background.py
index 239b4f77d49..1b8f0691df3 100644
--- a/buildscripts/resmokelib/testing/hooks/validate_background.py
+++ b/buildscripts/resmokelib/testing/hooks/validate_background.py
@@ -27,13 +27,6 @@ class ValidateCollectionsInBackground(jsfile.JSHook):
def before_suite(self, test_report):
"""Start the background thread."""
- server_status = self.fixture.mongo_client().admin.command("serverStatus")
- if not server_status["storageEngine"].get("supportsCheckpointCursors", False):
- self.logger.info(
- "Not enabling the background collection validation thread because '%s' storage"
- " engine does not support checkpoints.", server_status["storageEngine"]["name"])
- return
-
self._background_job = _BackgroundJob("ValidateCollectionsInBackground")
self.logger.info("Starting the background collection validation thread.")
self._background_job.start()