Closed saintlyzero closed 1 year ago
While installing the requirements.txt, redis 4.0.2 is the default version pulled, which is not compatible with huey 1.10.4.
requirements.txt
redis 4.0.2
huey 1.10.4
It throws an error while trying to run the docker images using $ docker-compose up
$ docker-compose up
huey.exceptions.ScheduleReadException: TypeError: init() got an unexpected keyword argument 'decode_components'.
The existing deployment on vcenter uses redis 3.0.1, which works fine.
redis 3.0.1
Specifying the version number in requirements.txt should fix this error.
Fix: redis==3.0.1
redis==3.0.1
While installing the
requirements.txt
,redis 4.0.2
is the default version pulled, which is not compatible withhuey 1.10.4
.It throws an error while trying to run the docker images using
$ docker-compose up
The existing deployment on vcenter uses
redis 3.0.1
, which works fine.Specifying the version number in requirements.txt should fix this error.
Fix:
redis==3.0.1