Co-authored-by: Steven Silvester <steve.silvester@mongodb.com> Co-authored-by: Shane Harvey <shnhrv@gmail.com> Co-authored-by: Steven Silvester <steven.silvester@ieee.org> Co-authored-by: Iris <58442094+sleepyStick@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kevin Albertson <kevin.albertson@mongodb.com> Co-authored-by: Casey Clements <caseyclements@users.noreply.github.com> Co-authored-by: Sergey Zelenov <mail@zelenov.su> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
65 lines
1.1 KiB
JSON
65 lines
1.1 KiB
JSON
{
|
|
"version": 1,
|
|
"style": "integration",
|
|
"description": "error during minPoolSize population clears pool",
|
|
"runOn": [
|
|
{
|
|
"minServerVersion": "4.9.0"
|
|
}
|
|
],
|
|
"failPoint": {
|
|
"configureFailPoint": "failCommand",
|
|
"mode": "alwaysOn",
|
|
"data": {
|
|
"failCommands": [
|
|
"isMaster",
|
|
"hello"
|
|
],
|
|
"errorCode": 91,
|
|
"appName": "poolCreateMinSizeErrorTest"
|
|
}
|
|
},
|
|
"poolOptions": {
|
|
"minPoolSize": 1,
|
|
"backgroundThreadIntervalMS": 50,
|
|
"appName": "poolCreateMinSizeErrorTest"
|
|
},
|
|
"operations": [
|
|
{
|
|
"name": "ready"
|
|
},
|
|
{
|
|
"name": "waitForEvent",
|
|
"event": "ConnectionPoolCleared",
|
|
"count": 1
|
|
},
|
|
{
|
|
"name": "wait",
|
|
"ms": 200
|
|
}
|
|
],
|
|
"events": [
|
|
{
|
|
"type": "ConnectionPoolReady",
|
|
"address": 42
|
|
},
|
|
{
|
|
"type": "ConnectionCreated",
|
|
"address": 42
|
|
},
|
|
{
|
|
"type": "ConnectionClosed",
|
|
"address": 42,
|
|
"connectionId": 42,
|
|
"reason": "error"
|
|
},
|
|
{
|
|
"type": "ConnectionPoolCleared",
|
|
"address": 42
|
|
}
|
|
],
|
|
"ignore": [
|
|
"ConnectionPoolCreated"
|
|
]
|
|
}
|