Skip to content

Commit

Permalink
Merge pull request #13645 from TheRealHaoLiu/fix-websocket
Browse files Browse the repository at this point in the history
Revert "Remove trailing $ from websocket_urlpatterns to work with cus…
  • Loading branch information
TheRealHaoLiu authored Mar 3, 2023
2 parents 1411d11 + 2ca0b7b commit f0c967c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions awx/main/routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def __init__(self, *args, **kwargs):


websocket_urlpatterns = [
re_path(r'websocket/', consumers.EventConsumer.as_asgi()),
re_path(r'websocket/broadcast/', consumers.BroadcastConsumer.as_asgi()),
re_path(r'websocket/$', consumers.EventConsumer.as_asgi()),
re_path(r'websocket/broadcast/$', consumers.BroadcastConsumer.as_asgi()),
]

application = AWXProtocolTypeRouter(
Expand Down

0 comments on commit f0c967c

Please sign in to comment.