Skip to content

Commit e58de5b

Browse files
authored
[Queues] Fix typo in batching-retries (#19684)
1 parent 9c3e1c3 commit e58de5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/queues/configuration/batching-retries.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default {
8989

9090
You can also acknowledge or negatively acknowledge messages at a batch level with `ackAll()` and `retryAll()`. Calling `ackAll()` on the batch of messages (`MessageBatch`) delivered to your consumer Worker has the same behaviour as a consumer Worker that successfully returns (does not throw an error).
9191

92-
Note that calls to `ack()`, `retry()` and their `ackAll()` / `retryAll` equivalents follow the below precedence rules:
92+
Note that calls to `ack()`, `retry()` and their `ackAll()` / `retryAll()` equivalents follow the below precedence rules:
9393

9494
- If you call `ack()` on a message, subsequent calls to `ack()` or `retry()` are silently ignored.
9595
- If you call `retry()` on a message and then call `ack()`: the `ack()` is ignored. The first method call wins in all cases.

0 commit comments

Comments
 (0)