Skip to content

Commit 44176c1

Browse files
authored
DRIVERS-3326 Fix test for error propagation behavior when multiple errors are encountered (#1897)
1 parent bb9dddd commit 44176c1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

source/retryable-writes/tests/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ to cover the same sequence of events.
326326

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

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

332332
```javascript
333333
{
@@ -380,7 +380,7 @@ to cover the same sequence of events.
380380
```javascript
381381
{
382382
configureFailPoint: "failCommand",
383-
mode: {times: 1},
383+
mode: "alwaysOn",
384384
data: {
385385
failCommands: ["insert"],
386386
errorLabels: ["RetryableError", "SystemOverloadedError", "NoWritesPerformed"],
@@ -419,6 +419,8 @@ to cover the same sequence of events.
419419

420420
## Changelog
421421

422+
- 2026-02-17: Fix test for error propagation behavior when multiple errors are encountered.
423+
422424
- 2026-02-03: Add tests for error propagation behavior when multiple errors are encountered.
423425

424426
- 2024-10-29: Convert command construction tests to unified format.

0 commit comments

Comments
 (0)