summaryrefslogtreecommitdiff
path: root/jstests/multiVersion/minor_version_tags_old_new_old.js
blob: ffbf838e2d7bff11f0928b28b9bbb8c0c3c05647 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(function() {
    'use strict';

    load("jstests/replsets/libs/tags.js");

    var oldVersion = "last-stable";
    var newVersion = "latest";
    let nodes = [
        {binVersion: oldVersion},
        {binVersion: newVersion},
        {binVersion: oldVersion},
        {binVersion: newVersion},
        {binVersion: oldVersion}
    ];
    new TagsTest({nodes: nodes, forceWriteMode: 'commands'}).run();
}());