### Description Passing the --lifespan flag to gunicorn does not forward the option to uvicorn.
6 lines
145 B
Python
6 lines
145 B
Python
from uvicorn.workers import UvicornWorker # pylint: disable=import-error
|
|
|
|
|
|
class Worker(UvicornWorker):
|
|
CONFIG_KWARGS = {"lifespan": "off"}
|