diff --git a/gestioasso/routing.py b/gestioasso/routing.py index f329fdcd..2b42648a 100644 --- a/gestioasso/routing.py +++ b/gestioasso/routing.py @@ -1,6 +1,6 @@ from channels.auth import AuthMiddlewareStack -from channels.http import AsgiHandler from channels.routing import ProtocolTypeRouter, URLRouter +from django.core.asgi import get_asgi_application from django.urls import path from kfet.routing import KFRouter @@ -15,6 +15,6 @@ application = ProtocolTypeRouter( ] ) ), - "http": AsgiHandler, + "http": get_asgi_application(), } )