File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Original file line number Diff line number Diff line change @@ -1587,6 +1587,8 @@ The Redis transport DSN may looks like this:
1587
1587
MESSENGER_TRANSPORT_DSN=redis://host-01:6379,redis://host-02:6379,redis://host-03:6379,redis://host-04:6379
1588
1588
# Unix Socket Example
1589
1589
MESSENGER_TRANSPORT_DSN=redis:///var/run/redis.sock
1590
+ # TLS Example
1591
+ MESSENGER_TRANSPORT_DSN=rediss://localhost:6379/messages
1590
1592
1591
1593
.. versionadded :: 5.1
1592
1594
@@ -1617,7 +1619,6 @@ stream_max_entries The maximum number of entries which ``0`` (which means "
1617
1619
the stream will be trimmed to. Set
1618
1620
it to a large enough number to
1619
1621
avoid losing pending messages
1620
- tls Enable TLS support for the connection false
1621
1622
redeliver_timeout Timeout before retrying a pending ``3600 ``
1622
1623
message which is owned by an
1623
1624
abandoned consumer (if a worker died
@@ -1656,6 +1657,14 @@ claim_interval Interval on which pending/abandoned ``60000`` (1 Minute)
1656
1657
1657
1658
The ``delete_after_reject `` and ``lazy `` options were introduced in Symfony 5.2.
1658
1659
1660
+ .. versionadded :: 5.3
1661
+
1662
+ The ``rediss:// `` DSN scheme support for TLS protocol was introduced in Symfony 5.3.
1663
+
1664
+ .. deprecated :: 5.3
1665
+
1666
+ The ``tls `` option was deprecated in Symfony 5.3, use ``rediss:// `` DSN scheme for TLS support instead.
1667
+
1659
1668
.. deprecated :: 5.4
1660
1669
1661
1670
Not setting a explicit value for the ``delete_after_ack `` option is
You can’t perform that action at this time.
0 commit comments