You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This output the following: amqp://guest:**@foo:5672//
And not show the another two amqp defined.
I've read the kombu code to make sure that I thinking correctly:
classSentinelChannel(Channel):
"""Channel with explicit Redis Sentinel knowledge. Broker url is supposed to look like: .. code-block:: sentinel://0.0.0.0:26379;sentinel://0.0.0.0:26380/... where each sentinel is separated by a `;`. Other arguments for the sentinel should come from the transport options (see `transport_options` of :class:`~kombu.connection.Connection`). You must provide at least one option in Transport options: * `master_name` - name of the redis group to poll Example: ------- .. code-block:: python >>> import kombu >>> c = kombu.Connection( 'sentinel://sentinel1:26379;sentinel://sentinel2:26379', transport_options={'master_name': 'mymaster'} ) >>> c.connect() """
Could you help me?
The text was updated successfully, but these errors were encountered:
When I configure multiple sentinels to celery broker, when celery starts show only one of this sentinels.
I configured following documentation: https://docs.celeryq.dev/projects/kombu/en/stable/userguide/connections.html#urls
So, I did an example code to test:
This output the following: sentinel://0.0.0.0:26347/3
And not show the another two sentinels defined.
Trying with another option, in this case, amqp:
This output the following: amqp://guest:**@foo:5672//
And not show the another two amqp defined.
I've read the kombu code to make sure that I thinking correctly:
Could you help me?
The text was updated successfully, but these errors were encountered: