From 63fd38b606da7900fcd38e342b5edcfa90b6bacf Mon Sep 17 00:00:00 2001 From: Devin Matte Date: Mon, 21 Dec 2020 23:36:29 -0500 Subject: [PATCH] Hotfix timeout value --- gunicorn_conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn_conf.py b/gunicorn_conf.py index a05269a..fe4825b 100644 --- a/gunicorn_conf.py +++ b/gunicorn_conf.py @@ -10,7 +10,7 @@ else: config = os.path.join(app.config.get('ROOT_DIR', os.getcwd()), "config.py") app.config.from_pyfile(config) -timeout = config.TIMEOUT +timeout = app.config['TIMEOUT'] def start_websockify(websockify_path, target_file):