summaryrefslogtreecommitdiff
path: root/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/server-discovery-and-monitoring/rs/null_election_id.yml
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/server-discovery-and-monitoring/rs/null_election_id.yml')
-rw-r--r--src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/server-discovery-and-monitoring/rs/null_election_id.yml164
1 files changed, 0 insertions, 164 deletions
diff --git a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/server-discovery-and-monitoring/rs/null_election_id.yml b/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/server-discovery-and-monitoring/rs/null_election_id.yml
deleted file mode 100644
index 713e74d5363..00000000000
--- a/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/go.mongodb.org/mongo-driver/data/server-discovery-and-monitoring/rs/null_election_id.yml
+++ /dev/null
@@ -1,164 +0,0 @@
-description: "Primaries with and without electionIds"
-
-uri: "mongodb://a/?replicaSet=rs"
-
-phases: [
-
- # Primary A has no electionId.
- {
- responses: [
- ["a:27017", {
- ok: 1,
- ismaster: true,
- hosts: ["a:27017", "b:27017", "c:27017"],
- setVersion: 1,
- setName: "rs",
- minWireVersion: 0,
- maxWireVersion: 6
- }]
- ],
-
- outcome: {
- servers: {
- "a:27017": {
- type: "RSPrimary",
- setName: "rs",
- setVersion: 1,
- electionId:
- },
- "b:27017": {
- type: "Unknown",
- setName: ,
- electionId:
- },
- "c:27017": {
- type: "Unknown",
- setName: ,
- electionId:
- }
- },
- topologyType: "ReplicaSetWithPrimary",
- logicalSessionTimeoutMinutes: null,
- setName: "rs",
- }
- },
-
- # B is elected, it has an electionId.
- {
- responses: [
- ["b:27017", {
- ok: 1,
- ismaster: true,
- hosts: ["a:27017", "b:27017", "c:27017"],
- setName: "rs",
- setVersion: 1,
- electionId: {"$oid": "000000000000000000000002"},
- minWireVersion: 0,
- maxWireVersion: 6
- }]
- ],
-
- outcome: {
- servers: {
- "a:27017": {
- type: "Unknown",
- setName: ,
- electionId:
- },
- "b:27017": {
- type: "RSPrimary",
- setName: "rs",
- setVersion: 1,
- electionId: {"$oid": "000000000000000000000002"}
- },
- "c:27017": {
- type: "Unknown",
- setName: ,
- electionId:
- }
- },
- topologyType: "ReplicaSetWithPrimary",
- logicalSessionTimeoutMinutes: null,
- setName: "rs",
- }
- },
-
- # A still claims to be primary, no electionId, we have to trust it.
- {
- responses: [
- ["a:27017", {
- ok: 1,
- ismaster: true,
- hosts: ["a:27017", "b:27017", "c:27017"],
- setVersion: 1,
- setName: "rs",
- minWireVersion: 0,
- maxWireVersion: 6
- }]
- ],
- outcome: {
- servers: {
- "a:27017": {
- type: "RSPrimary",
- setName: "rs",
- setVersion: 1,
- electionId:
- },
- "b:27017": {
- type: "Unknown",
- setName: ,
- electionId:
- },
- "c:27017": {
- type: "Unknown",
- setName: ,
- electionId:
- }
- },
- topologyType: "ReplicaSetWithPrimary",
- logicalSessionTimeoutMinutes: null,
- setName: "rs",
- }
- },
-
- # But we remember B's electionId, so when we finally hear from C
- # claiming it is primary, we ignore it due to its outdated electionId
- {
- responses: [
- ["c:27017", {
- ok: 1,
- ismaster: true,
- hosts: ["a:27017", "b:27017", "c:27017"],
- setName: "rs",
- setVersion: 1,
- electionId: {"$oid": "000000000000000000000001"},
- minWireVersion: 0,
- maxWireVersion: 6
- }]
- ],
- outcome: {
- servers: {
- # Still primary.
- "a:27017": {
- type: "RSPrimary",
- setName: "rs",
- setVersion: 1,
- electionId:
- },
- "b:27017": {
- type: "Unknown",
- setName: ,
- electionId:
- },
- "c:27017": {
- type: "Unknown",
- setName: ,
- electionId:
- }
- },
- topologyType: "ReplicaSetWithPrimary",
- logicalSessionTimeoutMinutes: null,
- setName: "rs",
- }
- }
-]