-
Notifications
You must be signed in to change notification settings - Fork 307
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
fix configuring an ipv6 agent hostname #2486
Conversation
BenchmarksParameters
See matching parameters
SummaryFound 5 performance improvements and 38 performance regressions! Performance is the same for 1007 cases.
|
This appears to still be broken, but with a slightly different error; in the logs I see:
It seems to be because we are directly passing the fields from the URL object to the http(s) request field, which is not valid for IPv6 addresses (see nodejs/node#39738); urlToHttpOptions should be used to do the conversion |
alternatively, you could just do |
What does this PR do?
Fix configuring an IPv6 agent hostname.
Motivation
This was supported when passed as a complete URL but not when passing the IP as the hostname.
Fixes #2449
Additional Notes
I didn't test span stats since there isn't an existing test for exporting that I could find.