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
Original file line number Diff line number Diff line change
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 @@ -366,7 +366,7 @@ tests:
commandName: bulkWrite


- description: 'database.aggregate retries using operation loop'
- description: 'database.aggregate read retries using operation loop'
operations:
- name: failPoint
object: testRunner
Expand Down Expand Up @@ -743,7 +743,7 @@ tests:
commandName: aggregate


- description: 'collection.aggregate retries using operation loop'
- description: 'collection.aggregate read retries using operation loop'
operations:
- name: failPoint
object: testRunner
Expand Down Expand Up @@ -2344,7 +2344,7 @@ tests:
commandName: dropIndexes


- description: 'collection.aggregate retries using operation loop'
- description: 'collection.aggregate write retries using operation loop'
operations:
- name: failPoint
object: testRunner
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ _yamlAnchors:
bulWriteInsertNamespace: &client_bulk_write_ns retryable-writes-tests.coll

tests: {% for operation in operations %}
- description: '{{operation.object}}.{{operation.operation_name}} retries using operation loop' {%- if ((operation.operation_name == 'clientBulkWrite')) %}
- description: '{{operation.object}}.{{operation.operation_name}}{{ " " + operation.operation_type + "" if operation.operation_name == "aggregate" else "" }} retries using operation loop' {%- if ((operation.operation_name == 'clientBulkWrite')) %}
runOnRequirements:
- minServerVersion: '8.0' # client bulk write added to server in 8.0
{%- endif %}
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
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ tests:
- commandFailedEvent:
commandName: bulkWrite

- description: 'database.aggregate retries at most maxAttempts=5 times'
- description: 'database.aggregate read retries at most maxAttempts=5 times'
operations:
- name: failPoint
object: testRunner
Expand Down Expand Up @@ -513,7 +513,7 @@ tests:
- commandFailedEvent:
commandName: aggregate

- description: 'collection.aggregate retries at most maxAttempts=5 times'
- description: 'collection.aggregate read retries at most maxAttempts=5 times'
operations:
- name: failPoint
object: testRunner
Expand Down Expand Up @@ -1711,7 +1711,7 @@ tests:
- commandFailedEvent:
commandName: dropIndexes

- description: 'collection.aggregate retries at most maxAttempts=5 times'
- description: 'collection.aggregate write retries at most maxAttempts=5 times'
operations:
- name: failPoint
object: testRunner
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ initialData:
- { _id: 2, x: 22 }

tests: {% for operation in operations %}
- description: '{{operation.object}}.{{operation.operation_name}} retries at most maxAttempts=5 times'
- description: '{{operation.object}}.{{operation.operation_name}}{{ " " + operation.operation_type + "" if operation.operation_name == "aggregate" else "" }} retries at most maxAttempts=5 times'
{%- if ((operation.operation_name == 'clientBulkWrite')) %}
runOnRequirements:
- minServerVersion: '8.0' # client bulk write added to server in 8.0
Expand Down
Loading