diff --git a/docker/gunicorn.conf.py b/docker/gunicorn.conf.py index 62ecafcfee..a12a1c8436 100644 --- a/docker/gunicorn.conf.py +++ b/docker/gunicorn.conf.py @@ -12,7 +12,8 @@ loglevel = os.environ.get('INVENTREE_LOG_LEVEL', 'warning').lower() capture_output = True # Worker configuration -worker_class = 'gevent' # Allow multi-threading support +# TODO: Implement support for gevent +# worker_class = 'gevent' # Allow multi-threading support worker_tmp_dir = '/dev/shm' # Write temp file to RAM (faster) threads = 4 diff --git a/docker/requirements.txt b/docker/requirements.txt index dcb240a585..2371292f9d 100644 --- a/docker/requirements.txt +++ b/docker/requirements.txt @@ -14,4 +14,3 @@ mariadb>=1.0.7,<1.1.0 # gunicorn web server gunicorn>=20.1.0 -gevent>=22.10.2