blob: f91c5d88cc7504112c2c0ed63a25aa7f6e7ad9d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// SERVER-32255 This test ensures a node started with --shardsvr and added to a replica set receives
// UUIDs upon re-initiation.
(function() {
"use strict";
load("jstests/libs/check_uuids.js");
let st = new ShardingTest({shards: 1, rs: {nodes: 1}, mongos: 1});
let mongos = st.s;
let rs = st.rs0;
// Create `test.coll`.
mongos.getDB("test").coll.insert({_id: 1, x: 1});
// Add a node with --shardsvr to the replica set.
let newNode = rs.add({'shardsvr': '', rsConfig: {priority: 0, votes: 0}});
rs.reInitiate();
rs.awaitSecondaryNodes();
let secondaryAdminDB = newNode.getDB("admin");
// Ensure the new node has UUIDs for all its collections.
checkCollectionUUIDs(secondaryAdminDB, /*isDowngrade*/ false);
})();
|