summaryrefslogtreecommitdiff
path: root/jstests/concurrency
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency')
-rw-r--r--jstests/concurrency/fsm_workloads/multi_statement_transaction_simple.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/jstests/concurrency/fsm_workloads/multi_statement_transaction_simple.js b/jstests/concurrency/fsm_workloads/multi_statement_transaction_simple.js
index b7232bc8850..b5548a480d6 100644
--- a/jstests/concurrency/fsm_workloads/multi_statement_transaction_simple.js
+++ b/jstests/concurrency/fsm_workloads/multi_statement_transaction_simple.js
@@ -4,12 +4,10 @@
* Creates several bank accounts. On each iteration, each thread:
* - chooses two accounts and amount of money being transfer
* - or checks the balance of each account
+ * @tags: [uses_transactions]
*/
var $config = (function() {
- // For isWiredTiger.
- load("jstests/concurrency/fsm_workload_helpers/server_types.js");
-
function _calcTotalMoneyBalances(sessionDb, txnNumber, collName) {
let res = sessionDb.runCommand({
find: collName,
@@ -120,9 +118,8 @@ var $config = (function() {
};
var skip = function skip(cluster) {
- if (cluster.isSharded() || cluster.isStandalone() ||
- !isWiredTiger(cluster.getDB("admin"))) {
- return {skip: true, msg: 'only runs in a replica set with WiredTiger.'};
+ if (cluster.isSharded() || cluster.isStandalone()) {
+ return {skip: true, msg: 'only runs in a replica set.'};
}
return {skip: false};
};