This commit is contained in:
2025-07-15 19:26:14 +08:00
parent 29c1dd3082
commit 3e4c207cfc
2 changed files with 2 additions and 2 deletions

View File

@@ -19,6 +19,6 @@ os.environ.setdefault("DJANGO_SETTINGS_MODULE", "api.settings")
application = ProtocolTypeRouter(
{
"http": get_asgi_application(),
"websocket": AuthMiddlewareStack(URLRouter(ws_urlpatterns)),
# "websocket": AuthMiddlewareStack(URLRouter(ws_urlpatterns)),
}
)