Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
m110 committed Oct 29, 2024
1 parent ea52245 commit fe1eecd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/content/advanced/requeuing-after-error.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ draft = false
bref = "How to requeue a message after it fails to process"
+++

If a message fails to process (a nack is sent), it usually blocks other messages on the same topic.
There's not much you can do if you care about the message order.
But if you accept that the order might change, you can requeue the failed message back to the tail of the queue.
When a message fails to process (a nack is sent), it usually blocks other messages on the same topic.
If you don't care about the message order, you can requeue the failed message back to the tail of the queue,
and let other messages process.

## Requeuer

Expand Down

0 comments on commit fe1eecd

Please sign in to comment.