8000 Merge branch '7.2' into 7.3 · symfony/symfony-docs@c983e76 · GitHub
[go: up one dir, main page]

Skip to content

Commit c983e76

Browse files
committed
Merge branch '7.2' into 7.3
* 7.2: [Messenger] Describe `--keepalive` option (AmazonSQS & Beanstalkd) fix typo
2 parents faa9c32 + d685b76 commit c983e76

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

messenger.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,19 @@ command with the ``--all`` option:
543543

544544
The ``--all`` option was introduced in Symfony 7.1.
545545

546+
The ``--keepalive`` option can be used to prevent messages from being prematurely
547+
redelivered during long-running processing. It marks the message as "in progress"
548+
and prevents it from being redelivered until the worker finishes processing it.
549+
550+
.. note::
551+
552+
This option is only available for supported transports, which are
553+
the Beanstalkd and AmazonSQS transports.
554+
555+
.. versionadded:: 7.2
556+
557+
The ``--keepalive`` option was introduced in Symfony 7.2.
558+
546559
.. tip::
547560

548561
In a development environment and if you're using the Symfony CLI tool,
@@ -1709,6 +1722,10 @@ The transport has a number of options:
17091722
The message time to run before it is put back in the ready queue - in
17101723
seconds.
17111724

1725+
.. versionadded:: 7.2
1726+
1727+
Keepalive support, using the ``--keepalive`` option, was added in Symfony 7.2.
1728+
17121729
.. _messenger-redis-transport:
17131730

17141731
Redis Transport
@@ -2031,6 +2048,10 @@ The transport has a number of options:
20312048
FIFO queues don't support setting a delay per message, a value of ``delay: 0``
20322049
is required in the retry strategy settings.
20332050

2051+
.. versionadded:: 7.2
2052+
2053+
Keepalive support, using the `--keepalive` option, was added in Symfony 7.2.
2054+
20342055
Serializing Messages
20352056
~~~~~~~~~~~~~~~~~~~~
20362057

setup/web_server_configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ When using Caddy on the server, you can use a configuration like this:
207207
208208
# otherwise, use PHP-FPM (replace "unix//var/..." with "127.0.0.1:9000" when using TCP)
209209
php_fastcgi unix//var/run/php/php8.3-fpm.sock {
210-
# only fallback to root index.php aka front controller.
210+
# only fall back to root index.php aka front controller.
211211
try_files {path} index.php
212212
213213
# optionally set the value of the environment variables used in the application

0 commit comments

Comments
 (0)
0