From 4f8d10861a1e6492e33538dad6e71f156ca25193 Mon Sep 17 00:00:00 2001 From: Abhinav Date: Mon, 19 Nov 2018 16:59:44 +0530 Subject: [PATCH] Pin version of redis package There was a bug in the latest version of redis package that caused our celery containers to crash. After inspecting the dependencies of all packages, we figured out that redlock hadn't pinned the version of redis due to which the version of redis got upgraded. celery issue for reference https://github.com/celery/celery/issues/5175 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 74b362f..9101546 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -redis \ No newline at end of file +redis==2.10.6