...

Text file src/go.mongodb.org/mongo-driver/testdata/server-discovery-and-monitoring/rs/primary_becomes_mongos.yml

Documentation: go.mongodb.org/mongo-driver/testdata/server-discovery-and-monitoring/rs

     1description: "Primary becomes mongos"
     2
     3uri: "mongodb://a/?replicaSet=rs"
     4
     5phases: [
     6
     7    {
     8        responses: [
     9
    10                ["a:27017", {
    11
    12                    ok: 1,
    13                    helloOk: true,
    14                    isWritablePrimary: true,
    15                    hosts: ["a:27017"],
    16                    setName: "rs",
    17                    minWireVersion: 0,
    18                    maxWireVersion: 6
    19                }]
    20        ],
    21
    22        outcome: {
    23
    24            servers: {
    25
    26                "a:27017": {
    27
    28                    type: "RSPrimary",
    29                    setName: "rs"
    30                }
    31            },
    32            topologyType: "ReplicaSetWithPrimary",
    33            logicalSessionTimeoutMinutes: null,
    34            setName: "rs"
    35        }
    36    },
    37
    38    {
    39        responses: [
    40                ["a:27017", {
    41                    ok: 1,
    42                    helloOk: true,
    43                    isWritablePrimary: true,
    44                    msg: "isdbgrid",
    45                    minWireVersion: 0,
    46                    maxWireVersion: 6
    47                }]
    48        ],
    49
    50        outcome: {
    51
    52            servers: {},
    53            topologyType: "ReplicaSetNoPrimary",
    54            logicalSessionTimeoutMinutes: null,
    55            setName: "rs"
    56        }
    57    }
    58]

View as plain text