Skip to content

Commit de5b13c

Browse files
committed
Typos
1 parent cc7267e commit de5b13c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/discounts/configure_discounts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The worker passes the messages to the handler, which then starts the re-indexing
4141

4242
To use discount re-indexing in the background:
4343

44-
1\. Make sure that the transport layer is [defined properly](background_tasks.md#configure-package) in Messenger configuration.
44+
1\. Make sure that the transport layer is [defined properly](background_tasks.md#configure-package) in [[= product_name_base =]] Messenger configuration.
4545

4646
2\. Make sure that the worker starts together with the application to watch the transport bus:
4747

docs/discounts/discounts_guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ You can also limit the usage per customer:
118118
Discounts affect the prices shown in the product catalog.
119119
When a discount is created, updated, or expires, the product catalog must be re-indexed to ensure that the search results and product listings display correct prices.
120120

121-
To prevent performance disruptions which could occur if re-indexing occurred immediately, [[= product_name =]] uses the [Ibexa Messenger](background_tasks.md)'s background queue to process re-indexing tasks in the background.
121+
To prevent performance disruptions which could occur if re-indexing occurred immediately, [[= product_name =]] uses the [[= product_name_base =]] Messenger's [background queue](background_tasks.md) to process re-indexing tasks in the background.
122122

123-
By [configuring the process](configure_discounts.md#discount-re-indexing), you can decide when is the most convenient time to perform re-indexing and improve your application's overall stability.
123+
By [configuring the process](configure_discounts.md#discount-re-indexing), you ensure that re-indexing is performed at the most convenient time to maintain your application's overall stability.
124124

125125
## Capabilities
126126

docs/infrastructure_and_maintenance/background_tasks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The process works as follows:
2525
3. The message is placed in the transport queue.
2626
It can be a Doctrine table, a Redis queue, and so on.
2727
4. A worker process continuously reads messages from the queue, pulls them into the default bus `ibexa.messenger.bus` and assigns them to the right handler.
28-
5. Handler service processes the message (executes the command).
28+
5. A handler service processes the message (executes the command).
2929
You can register multiple handlers for different jobs.
3030

3131
Here is an example of how you can extend your code and use [[= product_name_base =]] Messenger to process your tasks:
@@ -54,7 +54,7 @@ ibexa_messenger:
5454
5555
!!! note "Supported transports"
5656
57-
You can define different transports, such as Redis or PostgreSQL.
57+
You can define different transports: [[= product_name_base =]] Messenger has been tested to work with Redis, MySQL, PostgreSQL.
5858
For more information, see [Symfony Messenger documentation](https://symfony.com/doc/current/messenger.html#transports-async-queued-messages) or [Symfony Messenger tutorial](https://symfonycasts.com/screencast/messenger/install#installing-messenger).
5959
6060
### Start worker

0 commit comments

Comments
 (0)