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
docs: forbid err.Error() substring classification, document Windows errno gotcha
Codify the lesson from the connectex CI failure. syscall.ECONNREFUSED
on Windows is APPLICATION_ERROR + iota, NOT the WSA error code that
net/http surfaces, so errors.Is against the standard syscall.Errno
sentinels always returns false. The fix is build-tagged sentinel lists
that use golang.org/x/sys/windows.WSA* on Windows; see
internal/llm/network_errors_{windows,other}.go for the pattern.
0 commit comments