|
@@ -711,6 +711,8 @@ class TestMultiFileSystem(BaseRequests, BaseTest):
|
|
|
super().setup()
|
|
super().setup()
|
|
|
self.colpath = tempfile.mkdtemp()
|
|
self.colpath = tempfile.mkdtemp()
|
|
|
self.configuration.set("storage", "filesystem_folder", self.colpath)
|
|
self.configuration.set("storage", "filesystem_folder", self.colpath)
|
|
|
|
|
+ # Disable syncing to disk for better performance
|
|
|
|
|
+ self.configuration.set("storage", "fsync", "False")
|
|
|
self.application = Application(self.configuration, self.logger)
|
|
self.application = Application(self.configuration, self.logger)
|
|
|
|
|
|
|
|
def teardown(self):
|
|
def teardown(self):
|
|
@@ -725,6 +727,8 @@ class TestCustomStorageSystem(BaseRequests, BaseTest):
|
|
|
super().setup()
|
|
super().setup()
|
|
|
self.colpath = tempfile.mkdtemp()
|
|
self.colpath = tempfile.mkdtemp()
|
|
|
self.configuration.set("storage", "filesystem_folder", self.colpath)
|
|
self.configuration.set("storage", "filesystem_folder", self.colpath)
|
|
|
|
|
+ # Disable syncing to disk for better performance
|
|
|
|
|
+ self.configuration.set("storage", "fsync", "False")
|
|
|
self.application = Application(self.configuration, self.logger)
|
|
self.application = Application(self.configuration, self.logger)
|
|
|
|
|
|
|
|
def teardown(self):
|
|
def teardown(self):
|