This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
|
"""Uvicorn worker"""
|
|
from uvicorn.workers import UvicornWorker
|
|
|
|
|
|
class DjangoUvicornWorker(UvicornWorker):
|
|
"""Custom configured Uvicorn Worker without lifespan"""
|
|
|
|
CONFIG_KWARGS = {
|
|
"loop": "uvloop",
|
|
"http": "httptools",
|
|
"lifespan": "off",
|
|
"ws": "wsproto",
|
|
}
|