bubbleboy14
bubbleboy14
run_forever() has a new kwarg, "reconnect". If "reconnect" is True (which is the default) and the connection ends (or can't be established), it waits for 5 seconds and tries again....
omit break that causes pings to halt after failure (even post-reconnect). may fix: https://github.com/websocket-client/websocket-client/issues/858
This PR consists of a few things, with the general intention of improving asynchronous writes and reconnect behavior. TL/DR: fixes https://github.com/websocket-client/websocket-client/issues/976 and https://github.com/websocket-client/websocket-client/issues/942 and https://github.com/websocket-client/websocket-client/issues/974 background ---------- Running asynchronously (with...