From bc67e4d1f71ef79373cfc1bba5d0873b88d79859 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Wed, 30 Jul 2025 14:49:26 -0700 Subject: [PATCH] comment out gunicorn timeout for today --- gunicorn_config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gunicorn_config.py b/gunicorn_config.py index d941914a6..5f7954884 100644 --- a/gunicorn_config.py +++ b/gunicorn_config.py @@ -1,4 +1,4 @@ -import logging +# import logging import os # noqa import socket # noqa import sys # noqa @@ -12,9 +12,9 @@ from app.utils import hilite # noqa workers = 4 worker_class = "gevent" worker_connections = 256 -logging.basicConfig(level=logging.INFO) -timeout = 60 -logging.info(hilite(f"Gunicorn timeout set to {timeout} seconds")) +# logging.basicConfig(level=logging.INFO) +# timeout = 240 +# 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"