Skip to content

Commit

Permalink
fixing redis version in update command
Browse files Browse the repository at this point in the history
  • Loading branch information
ghukill committed Apr 8, 2019
1 parent 40e2950 commit f94c86e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/management/commands/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def v0_7_1__fix_redis_version_mismatches(self):

# ensure redis version
os.system('%s/pip uninstall redis celery -y' % (self.PYTHON_PATH))
os.system('%s/pip install redis==2.10.6 celery==4.3.0' % (self.PYTHON_PATH))
os.system('%s/pip install redis==3.2.1 celery==4.3.0' % (self.PYTHON_PATH))

# restart celery background tasks
# get supervisor handle
Expand Down

0 comments on commit f94c86e

Please sign in to comment.