-
Notifications
You must be signed in to change notification settings - Fork 29.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: don't assume IPv6 in test-regress-GH-5727 #6319
Conversation
LGTM but I'm not really sure what |
/cc @dirceu |
LGTM |
Sorry, I didn't think about this possibility. Good catch. 👍 |
I wonder what happened that caused this to suddenly pop up as of just a few hours ago. (Change to the setup/config of the devices in CI? Change in the code base?) Anyway, looks like it's failing 100% of the time, and the change seems small and easy to undo, so I'd be all for an expedited landing. /cc @nodejs/build @nodejs/testing |
LGTM |
No changes in CI afaik. |
@Trott I'm guessing it only started showing up last night because that's when the PR adding the test landed. Apparently, the test failed on the CI run in which it was added (see #5732), but still got landed. CI for this PR: https://ci.nodejs.org/job/node-test-pull-request/2356/ |
My fault on that one, I'm guessing that I didn't look closely enough at the results and assumed that it was one of the known flaky tests. |
LGTM |
test/parallel/test-regress-GH-5727 assumed that one of the servers would be listening on IPv6. This breaks when the machine running the test doesn't have IPv6. This commit builds the connection key that is compared dynamically. Refs: nodejs#5732 PR-URL: nodejs#6319 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Fedor Indutny <[email protected]>
test/parallel/test-regress-GH-5727 assumed that one of the servers would be listening on IPv6. This breaks when the machine running the test doesn't have IPv6. This commit builds the connection key that is compared dynamically. Refs: nodejs#5732 PR-URL: nodejs#6319 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Fedor Indutny <[email protected]>
test/parallel/test-regress-GH-5727 assumed that one of the servers would be listening on IPv6. This breaks when the machine running the test doesn't have IPv6. This commit builds the connection key that is compared dynamically. Refs: #5732 PR-URL: #6319 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Fedor Indutny <[email protected]>
adding dont-land as this file does not exist in v4... please feel free to update |
Checklist
Affected core subsystem(s)
test
Description of change
test/parallel/test-regress-GH-5727
assumed that one of the servers would be listening on IPv6. This breaks when the machine running the test doesn't have IPv6. This commit builds the connection key that is compared dynamically.Refs #5732
R= @Trott