From 266f53b1e60e13df6c78ddea14f4b789a2a4af40 Mon Sep 17 00:00:00 2001 From: Arseniy Popov Date: Mon, 20 Jul 2026 01:42:12 +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 66935f1..b828640 100644 --- a/docs/docs/sqlbroker/tutorial.md +++ b/docs/docs/sqlbroker/tutorial.md @@ -90,7 +90,7 @@ When `connection` is provided, the message insert participates in the same datab ### Batch publishing -The broker's and publisher's `.publish_batch()` methods insert all messages in a single SQL statement. They accept the same arguments as [`.publish()`](#publishing){.internal-link}, applied to every message in the batch. Wrap an individual payload in `SqlBrokerPublishMessage` to override its `queue`, `headers`, `correlation_id`, or `next_attempt_at`. +The broker's and publisher's `.publish_batch()` methods insert all messages in a single SQL statement. They accept the same arguments as [`.publish()`](#publishing){.internal-link}, applied to every message in the batch. Wrap an individual payload in `SqlBrokerPublishMessage` to override its `queue`, `headers`, or `next_attempt_at`. ```python linenums="1" {!> docs_src/sqlbroker/publish_batch.py [ln:16-42]!}