-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Redis + TLS URLs #2833
Comments
Does it not have an option for that? Or is this a special option that can only be set in the new url format? |
Celery doesn't know that rediss:// (note the two s) is a redis backend. See https://github.com/pypa/warehouse/blob/master/warehouse/celery.py |
Yeah, but we don't pass this URL to Redis, we need an option to set |
Closing this, as we don't have the resources to complete this task. |
Any plan to support the |
How does this issue correspond to #3831? |
It should work fine, we're using SSL on the broker and the backend for Redis. Broker support has been around for a while (not sure when it was added), backend support for SSL was added in #3831. I think this ticket can be closed. Here are the docs: The relevant options are |
Those options existed when I originally opened this issue, but this issue isn't about supporting TLS at all, it was specifically about supporting |
The backend option definitely didn't exist when you opened the ticket (I added it in #3831 only a few months ago). But that's a good point, maybe the ticket should be re-opened. |
I think this ticket should actually be broken out into two closely-related issues:
Celery processes the value of |
+1 We need the fix from Kombu as well. |
redis-py supports redis instances which are secured by TLS by using
rediss://
URLs instead ofredis://
URLs. Celery should support this too.The text was updated successfully, but these errors were encountered: