Sha256: 35fab295c5602cde60a2e9c16998eced7d56152941343d570386ca9208b5575c
Contents?: true
Size: 1.13 KB
Versions: 23
Compression:
Stored size: 1.13 KB
Contents
description: "Primary becomes a secondary with wrong setName" uri: "mongodb://a/?replicaSet=rs" phases: [ # Primary is discovered normally. { responses: [ ["a:27017", { ok: 1, ismaster: true, hosts: ["a:27017"], setName: "rs" }] ], outcome: { servers: { "a:27017": { type: "RSPrimary", setName: "rs" } }, topologyType: "ReplicaSetWithPrimary", setName: "rs" } }, # Primary changes its setName and becomes secondary. # Remove it and change the topologyType. { responses: [ ["a:27017", { ok: 1, ismaster: false, secondary: true, hosts: ["a:27017"], setName: "wrong" }] ], outcome: { servers: {}, topologyType: "ReplicaSetNoPrimary", setName: "rs" } } ]
Version data entries
23 entries across 20 versions & 3 rubygems