Sha256: e2db06006a124c0378f51dd7c0591be7380c3c223a25f0a7996e766996048207
Contents?: true
Size: 1.66 KB
Versions: 11
Compression:
Stored size: 1.66 KB
Contents
data: - { _id: 1, x: 11 } - { _id: 2, x: 22 } # TODO: this should change to 4.0 once 4.0.0 is released. minServerVersion: '3.99' tests: - description: "UpdateOne succeeds after PrimarySteppedDown" clientOptions: retryWrites: true failPoint: configureFailPoint: failCommand mode: { times: 1 } data: failCommands: ["update"] errorCode: 189 operation: name: "updateOne" arguments: filter: { _id: 1 } update: { $inc: { x : 1 }} outcome: result: matchedCount: 1 modifiedCount: 1 upsertedCount: 0 collection: data: - { _id: 1, x: 12 } - { _id: 2, x: 22 } - description: "UpdateOne succeeds after WriteConcernError ShutdownInProgress" clientOptions: retryWrites: true failPoint: configureFailPoint: failCommand mode: { times: 1 } data: failCommands: ["update"] writeConcernError: code: 91 errmsg: Replication is being shut down operation: name: "updateOne" arguments: filter: { _id: 1 } update: { $inc: { x : 1 }} outcome: result: matchedCount: 1 modifiedCount: 1 upsertedCount: 0 collection: data: - { _id: 1, x: 12 } - { _id: 2, x: 22 }
Version data entries
11 entries across 11 versions & 2 rubygems