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
The previous commit gated isNetworkError on platform-specific
connectionErrnos but left the tests wrapping syscall.ECONNREFUSED
directly. On Windows that's an APPLICATION_ERROR-prefixed invented
constant, not the WSA value the production check uses, so the tests
failed on windows-11-arm CI. Reach into connectionErrnos[0] for the
representative connection-refused sentinel; it resolves to
syscall.ECONNREFUSED on POSIX and windows.WSAECONNREFUSED on Windows.
0 commit comments