From d75a4229384c4c96556ba5adc063d626f57eca22 Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Tue, 9 Jan 2024 08:09:40 -0700 Subject: [PATCH] RUBY-3365 remove spec (#2820) --- .../cmap/pool-clear-interrupt-immediately.yml | 49 ------------------- 1 file changed, 49 deletions(-) delete mode 100644 spec/spec_tests/data/cmap/pool-clear-interrupt-immediately.yml diff --git a/spec/spec_tests/data/cmap/pool-clear-interrupt-immediately.yml b/spec/spec_tests/data/cmap/pool-clear-interrupt-immediately.yml deleted file mode 100644 index afbb880df0..0000000000 --- a/spec/spec_tests/data/cmap/pool-clear-interrupt-immediately.yml +++ /dev/null @@ -1,49 +0,0 @@ -version: 1 -style: unit -description: Connections MUST be interrupted as soon as possible (interruptInUseConnections=true) -# Remove the topology runOn requirement when cmap specs are adjusted for lbs -runOn: - - topology: [ "single", "replicaset", "sharded" ] -poolOptions: - # ensure it's not involved by default - backgroundThreadIntervalMS: 10000 -operations: - - name: ready - - name: checkOut - - name: checkOut - label: conn - - name: clear - interruptInUseConnections: true - - name: waitForEvent - event: ConnectionPoolCleared - count: 1 - timeout: 1000 - - name: waitForEvent - event: ConnectionClosed - count: 2 - timeout: 1000 - - name: close -events: - - type: ConnectionCheckedOut - connectionId: 1 - address: 42 - - type: ConnectionCheckedOut - connectionId: 2 - address: 42 - - type: ConnectionPoolCleared - interruptInUseConnections: true - - type: ConnectionClosed - reason: stale - address: 42 - - type: ConnectionClosed - reason: stale - address: 42 - - type: ConnectionPoolClosed - address: 42 -ignore: - - ConnectionCreated - - ConnectionPoolReady - - ConnectionReady - - ConnectionCheckOutStarted - - ConnectionPoolCreated - - ConnectionCheckedIn