summaryrefslogtreecommitdiff
path: root/jstests/replsets/migrating_tenant_mtab_blocks_writes.js
blob: a77e7f8328df706ef50e6875af1ff42203ce5db7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 *
 * @tags: [requires_fcv_46]
 */

(function () {
    "use strict";


    const rst = new ReplSetTest({ nodes: 1 });
    rst.startSet();
    rst.initiate();

    assert(true)

    rst.stopSet();
})();