Skip to content

Commit 067ce16

Browse files
authored
Document namespace option for failCommand (#1681)
1 parent 0a7a8b5 commit 067ce16

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

source/unified-test-format/unified-test-format.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3362,6 +3362,7 @@ db.adminCommand({
33623362
appName: <string>,
33633363
blockConnection: <boolean>,
33643364
blockTimeMS: <integer>,
3365+
namespace: <string>,
33653366
}
33663367
});
33673368
```
@@ -3385,6 +3386,9 @@ db.adminCommand({
33853386
- `blockTimeMS`: Optional integer, which is required when `blockConnection` is `true`. The number of milliseconds for
33863387
which the affected commands should be blocked. New in server 4.3.4 and backported to 4.2.9
33873388
([SERVER-41070](https://jira.mongodb.org/browse/SERVER-41070)).
3389+
- `namespace`: Optional string. If set, the fail point will only trigger for commands on the specified namespace (e.g.
3390+
`db.coll`). New in server 4.3.1 and backported to 4.2.6
3391+
([SERVER-43011](https://jira.mongodb.org/browse/SERVER-43011)).
33883392

33893393
##### onPrimaryTransactionalWrite
33903394

@@ -3501,6 +3505,8 @@ other specs *and* collating spec changes developed in parallel or during the sam
35013505

35023506
## Changelog
35033507

3508+
- 2024-10-24: Document `namespace` option for `failCommand` fail point.
3509+
35043510
- 2024-09-18: Note that `failCommand` `appName` option was backported
35053511

35063512
- 2024-05-08: **Schema version 1.21.**

0 commit comments

Comments
 (0)