celery / celeryproject

The official Celery Project website
Other
19 stars 11 forks source link

Include parse-url support for rabbitmq (amqp://) scheme #60

Closed timotei-za closed 2 years ago

timotei-za commented 2 years ago

Problem: Singleton base are not supported if rabbitmq broker are used to assimilate the tasks. Error: Redis URL must specify one of the following schemes (redis://, rediss://, unix://)

Please include rabbitmq (amqp://) parse_url function from connection.py file -> line - approx 1194

If there is another way to use singleton with the rabbitmq broker, I would be very grateful to know. Thanks!

Image 4

auvipy commented 2 years ago

isn't that already supported? what am I missing? or what are you exactly asking for?

timotei-za commented 2 years ago

@auvipy the problem is that when I use rabbitmq as a broker, I can't use Singleton property inside of decorator as a base, because parse_url method doesn't support that rabbitmq system

timotei-za commented 2 years ago

@auvipy and yes, this is not supported!!