celery_longterm_scheduler icon indicating copy to clipboard operation
celery_longterm_scheduler copied to clipboard

Supporting rediss:// scheme

Open mauriciomdb opened this issue 3 years ago • 1 comments

Hi team! thanks for this great package.

We are trying the package and we faced a small issue when using it with a Redis encrypted (TLS) transport. The Redis connection URL when encrypted is "rediss://" instead of "redis://" and that causes the backend to fail.

We patched it in a fork in the backend.py and it worked:

BACKENDS = { 'memory': MemoryBackend, 'redis': RedisBackend, 'rediss': RedisBackend, }

It's just about supporting that "rediss" scheme.

It would be great to have this solved in the 1.2.1. :)

mauriciomdb avatar Oct 28 '22 23:10 mauriciomdb

Hi all! Isn’t that solved already solved with version 1.3? https://github.com/ZeitOnline/celery_longterm_scheduler/commit/af749962cddabb3dfc5043d36e7633a5d5ac16a1? If yes, the issue could be closed.

dbartenstein avatar Mar 09 '24 10:03 dbartenstein