From efe4c6f06ed05ebf2ef99801bb989f1f527ee6c5 Mon Sep 17 00:00:00 2001 From: Ben Thorner Date: Thu, 28 Oct 2021 14:32:29 +0100 Subject: [PATCH] Fix notify-api crashing in PaaS This is purely by elimination: I couldn't see anything in the logs to indicate the cause of the crashes, just that the processes were exiting. The crash seemed to happen immediately after the AWS logs part of the wrapper script, which was a small indicator it might be something AWS-related. Since this package is no longer included by other dependencies, we need to include it explicitly. --- requirements-app.txt | 1 + requirements.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements-app.txt b/requirements-app.txt index 45e5a6197..ea0d82fcb 100644 --- a/requirements-app.txt +++ b/requirements-app.txt @@ -1,6 +1,7 @@ # Run `make freeze-requirements` to update requirements.txt # with package version changes made in requirements-app.txt +boto==2.49.0 # notify-api crashes in PaaS without this cffi==1.14.5 celery[sqs]==5.1.2 docopt==0.6.2 diff --git a/requirements.txt b/requirements.txt index e14f0d527..304eda7be 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,6 +3,7 @@ # Run `make freeze-requirements` to update requirements.txt # with package version changes made in requirements-app.txt +boto==2.49.0 # notify-api crashes in PaaS without this cffi==1.14.5 celery[sqs]==5.1.2 docopt==0.6.2