mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
f38386b13c
* Add bandit to pre-commit checks * fix catchall exceptions * remove unused definitons * remove unuseed ariables * Add docstring * fix B006, B008 errors * fix B007 error * ignore B009 * Add checks for formatting and naming
24 lines
489 B
Python
24 lines
489 B
Python
"""Gunicorn configuration for InvenTree."""
|
|
|
|
import logging
|
|
import multiprocessing
|
|
import os
|
|
|
|
logger = logging.getLogger('inventree')
|
|
|
|
workers = os.environ.get('INVENTREE_GUNICORN_WORKERS', None)
|
|
|
|
if workers is not None:
|
|
try:
|
|
workers = int(workers)
|
|
except ValueError:
|
|
workers = None
|
|
|
|
if workers is None:
|
|
workers = multiprocessing.cpu_count() * 2 + 1
|
|
|
|
logger.info(f"Starting gunicorn server with {workers} workers")
|
|
|
|
max_requests = 1000
|
|
max_requests_jitter = 50
|