From 949b8d9d08758db08cf237f6496073e0844b605f Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Wed, 19 Aug 2020 23:12:09 -0400 Subject: [PATCH] Worker Timeout Increased (#17) --- apprise_api/gunicorn.conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apprise_api/gunicorn.conf.py b/apprise_api/gunicorn.conf.py index ecbe478..bac8829 100644 --- a/apprise_api/gunicorn.conf.py +++ b/apprise_api/gunicorn.conf.py @@ -43,6 +43,10 @@ bind = [ # Workers are relative to the number of CPU's provided by hosting server workers = multiprocessing.cpu_count() * 2 + 1 +# Increase worker timeout value to give upstream services time to +# respond +timeout = 90 + # Logging # '-' means log to stdout. errorlog = '-'