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 19:10:57 +0000
commitbd8fdecf83f7de4fd73c0e0e3273865170bd80f9 (patch)
treea4b12a2c75a8cff8c2b10814892f0594abee0074 /buildscripts
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 '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()