-
-
Notifications
You must be signed in to change notification settings - Fork 35.6k
win: gc/test-net-timeout.js failure in v6.2.1 #7291
Copy link
Copy link
Closed
Labels
netIssues and PRs related to the net subsystem.Issues and PRs related to the net subsystem.testIssues and PRs related to the tests.Issues and PRs related to the tests.windowsIssues and PRs related to the Windows platform.Issues and PRs related to the Windows platform.
Metadata
Metadata
Assignees
Labels
netIssues and PRs related to the net subsystem.Issues and PRs related to the net subsystem.testIssues and PRs related to the tests.Issues and PRs related to the tests.windowsIssues and PRs related to the Windows platform.Issues and PRs related to the Windows platform.
The problem seems to be due to this change, specifically the use of
server.address().address. Changing the address back to'127.0.0.1'makes the test pass.From what I can work out, the address defaults to :: (the equivalent of 0.0.0.0) for IPv6 enabled machines. It seems that it never gets resolved to ::1 (localhost) on windows. The same test passes on Linux.