From 2df5dd48fbd47271e454ecb56f8a76255f4ed9ca Mon Sep 17 00:00:00 2001 From: Cloud User Date: Mon, 15 Jun 2026 16:04:12 +0000 Subject: [PATCH] resyncing specs 06-15-2026 --- .../unified/opmsg-not-supported.json | 74 ------------------- 1 file changed, 74 deletions(-) delete mode 100644 test/handshake/unified/opmsg-not-supported.json diff --git a/test/handshake/unified/opmsg-not-supported.json b/test/handshake/unified/opmsg-not-supported.json deleted file mode 100644 index b0fb30f245..0000000000 --- a/test/handshake/unified/opmsg-not-supported.json +++ /dev/null @@ -1,74 +0,0 @@ -{ - "description": "op_msg not supported", - "schemaVersion": "1.3", - "runOnRequirements": [ - { - "minServerVersion": "4.4" - } - ], - "createEntities": [ - { - "client": { - "id": "setupClient", - "useMultipleMongoses": false - } - }, - { - "client": { - "id": "client", - "useMultipleMongoses": false, - "uriOptions": { - "appName": "op-msg-handshake-test", - "serverSelectionTimeoutMS": 500 - } - } - }, - { - "database": { - "id": "database", - "client": "client", - "databaseName": "test" - } - } - ], - "tests": [ - { - "description": "server closing connection during initial hello produces an error", - "operations": [ - { - "name": "failPoint", - "object": "testRunner", - "arguments": { - "client": "setupClient", - "failPoint": { - "configureFailPoint": "failCommand", - "mode": "alwaysOn", - "data": { - "failCommands": [ - "hello", - "isMaster" - ], - "appName": "op-msg-handshake-test", - "closeConnection": true - } - } - } - }, - { - "name": "runCommand", - "object": "database", - "arguments": { - "commandName": "ping", - "command": { - "ping": 1 - } - }, - "expectError": { - "errorContains": "connection closed", - "isClientError": false - } - } - ] - } - ] -}