From fcec6d85ec161f9295664ceeb164e5ee314997a0 Mon Sep 17 00:00:00 2001 From: Hao Liu Date: Fri, 3 Mar 2023 00:02:52 -0500 Subject: [PATCH] fix merge issue --- awx/main/routing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/routing.py b/awx/main/routing.py index 100347f64e..44230a61dd 100644 --- a/awx/main/routing.py +++ b/awx/main/routing.py @@ -28,7 +28,7 @@ class AWXProtocolTypeRouter(ProtocolTypeRouter): websocket_urlpatterns = [ re_path(r'websocket/$', consumers.EventConsumer.as_asgi()), - re_path(r'websocket/broadcast/$', consumers.BroadcastConsumer.as_asgi()), + re_path(r'websocket/relay/$', consumers.BroadcastConsumer.as_asgi()), ] application = AWXProtocolTypeRouter(