From b3c54fe1b2a5b6cba6591839d259cbfcf6eeca25 Mon Sep 17 00:00:00 2001 From: Arseniy Popov Date: Wed, 22 Jul 2026 23:57:33 +0300 Subject: [PATCH] docs: fix docs --- docs/docs/sqlbroker/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/sqlbroker/tutorial.md b/docs/docs/sqlbroker/tutorial.md index 06a99a2..932d5fe 100644 --- a/docs/docs/sqlbroker/tutorial.md +++ b/docs/docs/sqlbroker/tutorial.md @@ -121,7 +121,7 @@ The broker's and publisher's `.publish_batch()` methods insert all messages in a - **`retain_in_archive_on_reject`** (default: `True`) — [Rejected](#reject){.internal-link} messages, in addition to being removed from the primary table, are also persisted in the archive table, where they serve as a [dead-letter queue](../sqlbroker/design.md#dead-letter-queue){.internal-link}. Requires the broker to define an archive table (`message_archive_table_name`). -### Message Lifecycle +### Message lifecycle A published message starts out in the `message` table with a `PENDING` status. Once a subscriber acquires it, the row is marked as `PROCESSING` and the message is processed.