You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is _backwards_compatible_sock flag still needed? In MQTT._sock_exact_recv there is this code:
if not self._backwards_compatible_sock:
# CPython/Socketpool Impl.
...
else: # ESP32SPI Impl.
# This will timeout with socket timeout (not keepalive timeout)
...
This flag is set by:
self._backwards_compatible_sock = not hasattr(sock, "recv_into")