...
1{
2 "description": "Replica set case normalization",
3 "uri": "mongodb://A/?replicaSet=rs",
4 "phases": [
5 {
6 "responses": [
7 [
8 "a:27017",
9 {
10 "ok": 1,
11 "helloOk": true,
12 "isWritablePrimary": true,
13 "setName": "rs",
14 "hosts": [
15 "A:27017"
16 ],
17 "passives": [
18 "B:27017"
19 ],
20 "arbiters": [
21 "C:27017"
22 ],
23 "minWireVersion": 0,
24 "maxWireVersion": 6
25 }
26 ]
27 ],
28 "outcome": {
29 "servers": {
30 "a:27017": {
31 "type": "RSPrimary",
32 "setName": "rs"
33 },
34 "b:27017": {
35 "type": "Unknown",
36 "setName": null
37 },
38 "c:27017": {
39 "type": "Unknown",
40 "setName": null
41 }
42 },
43 "topologyType": "ReplicaSetWithPrimary",
44 "logicalSessionTimeoutMinutes": null,
45 "setName": "rs"
46 }
47 }
48 ]
49}
View as plain text