Django - Async Django
Given this Django ASGI consumer code snippet, what will happen when a WebSocket connection is accepted?
from channels.generic.websocket import AsyncWebsocketConsumer
class ChatConsumer(AsyncWebsocketConsumer):
async def connect(self):
await self.accept()