Commit 9923dd3
[Repo Assist] Fix Windows CI: use 127.0.0.1 instead of localhost for test HTTP servers (#1648)
* Fix Windows CI: use 127.0.0.1 instead of localhost for test HTTP servers
On Windows GitHub Actions runners, binding Kestrel to 'localhost' fails
because it attempts to bind to both 127.0.0.1 (IPv4) and ::1 (IPv6),
and IPv6 socket creation is forbidden (SocketException 10013: WSAEACCES).
Using '127.0.0.1' explicitly avoids the IPv6 bind attempt and makes the
tests reliable on Windows CI.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* ci: trigger CI checks
---------
Co-authored-by: Repo Assist <copilot@github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>1 parent 9b5aace commit 9923dd3
2 files changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
61 | 61 | | |
62 | 62 | | |
63 | 63 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
| 63 | + | |
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
| |||
0 commit comments