mirror of
https://github.com/django/daphne.git
synced 2024-11-21 23:46:33 +03:00
ws_protocol: Log when WebSocket is killed by Daphne
This commit is contained in:
parent
1eaf2206cc
commit
71dc15e8c9
|
@ -279,11 +279,13 @@ class WebSocketProtocol(WebSocketServerProtocol):
|
|||
self.duration() > self.server.websocket_timeout
|
||||
and self.server.websocket_timeout >= 0
|
||||
):
|
||||
logger.warning("WebSocket %s took too long and was killed.", self.client_addr)
|
||||
self.serverClose()
|
||||
# Ping check
|
||||
# If we're still connecting, deny the connection
|
||||
if self.state == self.STATE_CONNECTING:
|
||||
if self.duration() > self.server.websocket_connect_timeout:
|
||||
logger.warning("WebSocket %s connection took too long and was killed.", self.client_addr)
|
||||
self.serverReject()
|
||||
elif self.state == self.STATE_OPEN:
|
||||
if (time.time() - self.last_ping) > self.server.ping_interval:
|
||||
|
|
Loading…
Reference in New Issue
Block a user