Skip to content

Commit 263e5d6

Browse files
committed
'ping_interval' parameter in 'WebSocketApp.run_forever()' appears to be unnecessary
1 parent 1ba0683 commit 263e5d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/murfey/client/websocket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def _run_websocket_event_loop(self):
8787
backoff = 0
8888
while True:
8989
attempt_start = time.perf_counter()
90-
connection_failure = self._ws.run_forever(ping_interval=30, ping_timeout=10)
90+
connection_failure = self._ws.run_forever()
9191
if not connection_failure:
9292
break
9393
if (time.perf_counter() - attempt_start) < 5:

0 commit comments

Comments
 (0)