From af49c0706007e46738f051d21e54f8c87e33acc0 Mon Sep 17 00:00:00 2001 From: RogerWork Date: Mon, 19 Feb 2024 11:41:29 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E8=AF=95=20uvicorn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dingxin_toolbox_drf/asgi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dingxin_toolbox_drf/asgi.py b/dingxin_toolbox_drf/asgi.py index 1f15cf2..e28b865 100644 --- a/dingxin_toolbox_drf/asgi.py +++ b/dingxin_toolbox_drf/asgi.py @@ -16,7 +16,7 @@ from .urls import websocket_urlpatterns os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'dingxin_toolbox_drf.settings') # os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') -django.setup() + # application = get_asgi_application() application = ProtocolTypeRouter( { @@ -24,5 +24,5 @@ application = ProtocolTypeRouter( 'http': get_default_application(), 'websocket': URLRouter(websocket_urlpatterns) } - ) +django.setup()