From 7b9d793724f0a421c3e938083bd53922e0094274 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Wed, 30 Jul 2025 13:54:28 -0700 Subject: [PATCH] try 60 seconds for timeout since we can't finish deploy for unknown reasons --- gunicorn_config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gunicorn_config.py b/gunicorn_config.py index 167017522..d941914a6 100644 --- a/gunicorn_config.py +++ b/gunicorn_config.py @@ -1,8 +1,8 @@ +import logging import os # noqa import socket # noqa import sys # noqa import traceback # noqa -import logging import gunicorn @@ -13,8 +13,8 @@ workers = 4 worker_class = "gevent" worker_connections = 256 logging.basicConfig(level=logging.INFO) -logging.info(hilite("Gunicorn timeout set to 240 seconds")) -timeout = 240 +timeout = 60 +logging.info(hilite(f"Gunicorn timeout set to {timeout} seconds")) bind = "0.0.0.0:{}".format(os.getenv("PORT")) statsd_host = "{}:8125".format(os.getenv("STATSD_HOST")) gunicorn.SERVER_SOFTWARE = "None"