Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions messenger.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2131,6 +2131,9 @@ The transport has a number of options:
``debug`` (default: ``false``)
If ``true`` it logs all HTTP requests and responses (it impacts performance)

``delete_on_rejection`` (default: ``true``)
If ``false`` instead of deleting the message on reject it will instead change the visibility allowing SQS to handle retries.

``endpoint`` (default: ``https://sqs.eu-west-1.amazonaws.com``)
Absolute URL to the SQS service

Expand All @@ -2149,6 +2152,9 @@ The transport has a number of options:
``region`` (default: ``eu-west-1``)
Name of the AWS region

``retry_delay`` (default: ``0``)
Only used when ``delete_on_rejection`` is set to ``false``. Defines the visibility timeout sent to SQS when a message is rejected.

``secret_key``
AWS secret key (must be urlencoded)

Expand All @@ -2165,6 +2171,10 @@ The transport has a number of options:

The ``queue_attributes`` and ``queue_tags`` options were introduced in Symfony 7.3.

.. versionadded:: 7.4

The ``delete_on_rejection`` and ``retry_delay`` options were introduced in Symfony 7.4.

.. note::

The ``wait_time`` parameter defines the maximum duration Amazon SQS should
Expand Down