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()