0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

SERVER-50380 Do not run 'supports_read_concern_majority.js' on the WiredTiger inMemory storage engine

This commit is contained in:
Gregory Wlodarek 2020-08-19 10:18:35 -04:00 committed by Evergreen Agent
parent b8576f13bf
commit d6f63ec549

View File

@ -6,7 +6,7 @@
"use strict";
const storageEngine = jsTest.options().storageEngine;
if (storageEngine === "wiredTiger") {
if (storageEngine === "wiredTiger" || storageEngine === "inMemory") {
return;
}