summaryrefslogtreecommitdiff
path: root/jstests/replsets/prepare_survives_primary_reconfig_failover.js
blob: b2e0be8749430c1c174121c4a42f31937afd5fd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * Tests that prepared transactions can safely be committed after a failover due to reconfig. We
 * issue the reconfig command directly against the primary in this test.
 *
 * @tags: [uses_transactions, uses_prepare_transaction]
 */
(function() {
"use strict";
load("jstests/replsets/libs/prepare_failover_due_to_reconfig.js");

let testName = "prepare_survives_primary_reconfig_failover";

testPrepareFailoverDueToReconfig(testName, /* reconfigOnPrimary */ true);
})();