From 35d455d1a5205de8f7ed28c0a36df4b7f9b8ec74 Mon Sep 17 00:00:00 2001 From: "Benjamin D." Date: Thu, 17 Oct 2024 17:07:26 +0200 Subject: [PATCH] [Messenger] Document issue between LISTEN/NOTIFY and prioritized transports https://github.com/symfony/symfony/issues/58574 PostgreSQL LISTEN/NOTIFY feature should not be used with prioritized transports --- messenger.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/messenger.rst b/messenger.rst index 3f78dbaef6c..a32884aac68 100644 --- a/messenger.rst +++ b/messenger.rst @@ -1605,6 +1605,11 @@ in the table. ``use_notify`` (default: ``true``) Whether to use LISTEN/NOTIFY. + .. note:: + + ``use_notify`` will work incorrectly if you use "Prioritized + Transports". Disable the LISTEN/NOTIFY feature in this case. + ``check_delayed_interval`` (default: ``60000``) The interval to check for delayed messages, in milliseconds. Set to 0 to disable checks.