Send ping into inactive connection, not pong
This commit is contained in:
parent
ae40a3d0b8
commit
e4887734a0
|
@ -135,7 +135,7 @@ class Connection(threading.Thread):
|
||||||
time.time() - self.last_message_sent > 300
|
time.time() - self.last_message_sent > 300
|
||||||
and self.status == 'fully_established'
|
and self.status == 'fully_established'
|
||||||
):
|
):
|
||||||
self.send_queue.put(message.Message(b'pong', b''))
|
self.send_queue.put(message.Message(b'ping', b''))
|
||||||
if self.status == 'disconnecting' or shared.shutting_down:
|
if self.status == 'disconnecting' or shared.shutting_down:
|
||||||
data = None
|
data = None
|
||||||
if not data:
|
if not data:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user