TypeError exception when starting the RQ worker process #4910
Labels
status: accepted
This issue has been accepted for implementation
type: bug
A confirmed report of unexpected behavior in the application
Environment
Steps to Reproduce
upgrade.sh
)./manage.py rqworker
)Expected Behavior
The RQ worker should start normally.
Observed Behavior
An exception is raised:
This is due to the latest release of the
rq
Python package (required bydjango-rq
requiringredis>=3.5.0
:However, NetBox's
requirements.txt
currently pinsredis
to version 3.4.1, which prevents a later version from being installed. We should probably just excluderedis
fromrequirements.txt
since it isn't a direct dependency in the first place.Workaround
Comment out or remove
redis==3.4.1
fromrequirements.txt
and re-run the upgrade script. The later release ofredis
should get installed automatically.The text was updated successfully, but these errors were encountered: