Sha256: e1d47e9889e4f05ae12ced7f51a2df5f792db6da36f61435c4a9272ad7020495
Contents?: true
Size: 1.82 KB
Versions: 2
Compression:
Stored size: 1.82 KB
Contents
description: "setVersion is ignored if there is no electionId" uri: "mongodb://a/?replicaSet=rs" phases: [ # Primary A is discovered and tells us about B. { responses: [ ["a:27017", { ok: 1, ismaster: true, hosts: ["a:27017", "b:27017"], setName: "rs", setVersion: 2 }] ], outcome: { servers: { "a:27017": { type: "RSPrimary", setName: "rs", setVersion: 2 , electionId: }, "b:27017": { type: "Unknown", setName: , electionId: } }, topologyType: "ReplicaSetWithPrimary", logicalSessionTimeoutMinutes: null, setName: "rs", } }, # B is elected, its setVersion is older but we believe it anyway, because # setVersion is only used in conjunction with electionId. { responses: [ ["b:27017", { ok: 1, ismaster: true, hosts: ["a:27017", "b:27017"], setName: "rs", setVersion: 1 }] ], outcome: { servers: { "a:27017": { type: "Unknown", setName: , electionId: }, "b:27017": { type: "RSPrimary", setName: "rs", setVersion: 1, electionId: } }, topologyType: "ReplicaSetWithPrimary", logicalSessionTimeoutMinutes: null, setName: "rs", } } ]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mongo-2.5.0 | spec/support/sdam/rs/setversion_without_electionid.yml |
mongo-2.5.0.beta | spec/support/sdam/rs/setversion_without_electionid.yml |