{ "runOn": [ { "minServerVersion": "4.3.1", "topology": [ "replicaset", "sharded", "load-balanced" ] } ], "data": [], "tests": [ { "description": "InsertOne succeeds with RetryableWriteError from server", "failPoint": { "configureFailPoint": "failCommand", "mode": { "times": 1 }, "data": { "failCommands": [ "insert" ], "errorCode": 112, "errorLabels": [ "RetryableWriteError" ] } }, "operation": { "name": "insertOne", "arguments": { "document": { "_id": 1, "x": 11 } } }, "outcome": { "result": { "insertedId": 1 }, "collection": { "data": [ { "_id": 1, "x": 11 } ] } } }, { "description": "InsertOne fails if server does not return RetryableWriteError", "failPoint": { "configureFailPoint": "failCommand", "mode": { "times": 1 }, "data": { "failCommands": [ "insert" ], "errorCode": 11600, "errorLabels": [] } }, "operation": { "name": "insertOne", "arguments": { "document": { "_id": 1, "x": 11 } } }, "outcome": { "error": true, "result": { "errorLabelsOmit": [ "RetryableWriteError" ] }, "collection": { "data": [] } } } ] }