From c18beba5639f9d716b112fc28753f59de9fc4f24 Mon Sep 17 00:00:00 2001 From: Peter Stockings Date: Thu, 14 Sep 2023 18:30:06 +1000 Subject: [PATCH] Add 90s timeout to gunicorn to attempt to avoid startup loop error(Matplotlib is building the font cache -> Worker timeout) --- Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile b/Procfile index 17a32c0..f7c6fed 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn app:app --workers=5 \ No newline at end of file +web: gunicorn app:app --workers=5 --timeout 90 \ No newline at end of file