Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions test/client-backpressure/backpressure-connection-checkin.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"database": {
"id": "database",
"client": "client",
"databaseName": "retryable-writes-tests"
"databaseName": "backpressure-connection-checkin"
}
},
{
Expand All @@ -43,18 +43,6 @@
}
}
],
"initialData": [
{
"collectionName": "coll",
"databaseName": "retryable-writes-tests",
"documents": [
{
"_id": 1,
"x": 11
}
]
}
],
"tests": [
{
"description": "overload error retry attempts return connections to the pool",
Expand Down
8 changes: 4 additions & 4 deletions test/client-backpressure/backpressure-retry-loop.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
"database": {
"id": "database_retryWrites_false",
"client": "client_retryWrites_false",
"databaseName": "backpressure-db"
"databaseName": "retryable-writes-tests"
}
},
{
Expand Down Expand Up @@ -711,7 +711,7 @@
]
},
{
"description": "database.aggregate retries using operation loop",
"description": "database.aggregate read retries using operation loop",
"operations": [
{
"name": "failPoint",
Expand Down Expand Up @@ -1480,7 +1480,7 @@
]
},
{
"description": "collection.aggregate retries using operation loop",
"description": "collection.aggregate read retries using operation loop",
"operations": [
{
"name": "failPoint",
Expand Down Expand Up @@ -4734,7 +4734,7 @@
]
},
{
"description": "collection.aggregate retries using operation loop",
"description": "collection.aggregate write retries using operation loop",
"operations": [
{
"name": "failPoint",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@
]
},
{
"description": "database.aggregate retries at most maxAttempts=5 times",
"description": "database.aggregate read retries at most maxAttempts=5 times",
"operations": [
{
"name": "failPoint",
Expand Down Expand Up @@ -1026,7 +1026,7 @@
]
},
{
"description": "collection.aggregate retries at most maxAttempts=5 times",
"description": "collection.aggregate read retries at most maxAttempts=5 times",
"operations": [
{
"name": "failPoint",
Expand Down Expand Up @@ -3448,7 +3448,7 @@
]
},
{
"description": "collection.aggregate retries at most maxAttempts=5 times",
"description": "collection.aggregate write retries at most maxAttempts=5 times",
"operations": [
{
"name": "failPoint",
Expand Down
8 changes: 5 additions & 3 deletions test/client-backpressure/getMore-retried.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"description": "getMore-retries-backpressure",
"description": "getMore-retried-backpressure",
"schemaVersion": "1.3",
"runOnRequirements": [
{
Expand All @@ -10,6 +10,7 @@
{
"client": {
"id": "client0",
"useMultipleMongoses": false,
"observeEvents": [
"commandStartedEvent",
"commandFailedEvent",
Expand All @@ -19,7 +20,8 @@
},
{
"client": {
"id": "failPointClient"
"id": "failPointClient",
"useMultipleMongoses": false
}
},
{
Expand Down Expand Up @@ -83,14 +85,14 @@
},
{
"name": "find",
"object": "coll",
"arguments": {
"batchSize": 2,
"filter": {},
"sort": {
"a": 1
}
},
"object": "coll",
"expectResult": [
{
"a": 1
Expand Down
Loading