comment out gunicorn timeout for today

This commit is contained in:
Kenneth Kehl
2025-07-30 14:49:26 -07:00
parent 7b9d793724
commit bc67e4d1f7

View File

@@ -1,4 +1,4 @@
import logging # import logging
import os # noqa import os # noqa
import socket # noqa import socket # noqa
import sys # noqa import sys # noqa
@@ -12,9 +12,9 @@ from app.utils import hilite # noqa
workers = 4 workers = 4
worker_class = "gevent" worker_class = "gevent"
worker_connections = 256 worker_connections = 256
logging.basicConfig(level=logging.INFO) # logging.basicConfig(level=logging.INFO)
timeout = 60 # timeout = 240
logging.info(hilite(f"Gunicorn timeout set to {timeout} seconds")) # logging.info(hilite(f"Gunicorn timeout set to {timeout} seconds"))
bind = "0.0.0.0:{}".format(os.getenv("PORT")) bind = "0.0.0.0:{}".format(os.getenv("PORT"))
statsd_host = "{}:8125".format(os.getenv("STATSD_HOST")) statsd_host = "{}:8125".format(os.getenv("STATSD_HOST"))
gunicorn.SERVER_SOFTWARE = "None" gunicorn.SERVER_SOFTWARE = "None"