mirror of
https://github.com/goauthentik/authentik
synced 2026-04-26 01:25:02 +02:00
14 lines
303 B
Python
14 lines
303 B
Python
"""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",
|
|
}
|