Skip to content
Merged
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
8 changes: 5 additions & 3 deletions source/retryable-writes/tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ to cover the same sequence of events.

1. Create a client with `retryWrites=true`.

2. Configure a fail point with error code `91` (ShutdownInProgress) with the `RetryableError` and
`SystemOverloadedError` error labels:
2. Configure a fail point with error code `91` (ShutdownInProgress) with the `RetryableError`, `SystemOverloadedError`,
and `NoWritesPerformed` error labels:

```javascript
{
Expand Down Expand Up @@ -380,7 +380,7 @@ to cover the same sequence of events.
```javascript
{
configureFailPoint: "failCommand",
mode: {times: 1},
mode: "alwaysOn",
data: {
failCommands: ["insert"],
errorLabels: ["RetryableError", "SystemOverloadedError", "NoWritesPerformed"],
Expand Down Expand Up @@ -419,6 +419,8 @@ to cover the same sequence of events.

## Changelog

- 2026-02-17: Fix test for error propagation behavior when multiple errors are encountered.

- 2026-02-03: Add tests for error propagation behavior when multiple errors are encountered.

- 2024-10-29: Convert command construction tests to unified format.
Expand Down
Loading