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