-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
New version of redis package is the cause of the Error #1868
Comments
This is all about this issue: jazzband/django-redis#342 |
Hi, thanks for the report. I believe it was fixed upstream in |
@browniebroke Unfortunately, I still get Error, even with Do you still think pinning redis to 2.10.4, <3 is a bad idea? At least as a temporary solution.
|
Well, the error is different. Technically, it is now coming from Celery/Kombu, not from django-celery. They did a similar fix: celery/kombu#947 but it's not yet released. |
@egregors did u find a proper fix for this? having the same issue |
What happened?
After redeploy, we got
redis==3.0.1
insteadredis==2.10.6
. So, when you try to work with cache for example, we got the exception:The problem exactly in the
redis==3.0.1
, as we may see there: https://stackoverflow.com/questions/53331405/django-compress-error-invalid-input-of-type-cachekeyIt is because of this pkg sets in the
requiriments/base.txt
asredis>=2.10.5 # https://github.com/antirez/redis
What should've happened instead?
All should work well
Steps to reproduce
Just rebuild compose.
(Ubuntu 18.04, Docker 17.05.0-ce)
The text was updated successfully, but these errors were encountered: