In library/network_connections.py, the retry logic in link_infos() around line 236 has an inverted condition:
except Exception:
if try_count < 50:
raise
continue
This re-raises the exception immediately on the first failure instead of retrying. Hence, continue is never reached.
The fix is to invert the condition:
except Exception:
if try_count >= 50:
raise
continue
Present in 1.17.9 and current main.
In library/network_connections.py, the retry logic in link_infos() around line 236 has an inverted condition:
This re-raises the exception immediately on the first failure instead of retrying. Hence, continue is never reached.
The fix is to invert the condition:
Present in 1.17.9 and current main.