We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
host variable checks headers.host twice.
host
headers.host
It should be let host = reqUrlObject.host || reqUrlObject.hostname || headers.host || 'localhost';
let host = reqUrlObject.host || reqUrlObject.hostname || headers.host || 'localhost';
Add any other context about the problem here. We should make tests more strict.
The text was updated successfully, but these errors were encountered:
fix(plugin-http): http.url attribute
320686b
closes open-telemetry#579 Signed-off-by: Olivier Albertini <[email protected]>
f8694cf
c62df3e
9773f9c
fix(plugin-http): http.url attribute (#580)
06d21e3
closes #579 Signed-off-by: Olivier Albertini <[email protected]>
OlivierAlbertini
Successfully merging a pull request may close this issue.
host
variable checksheaders.host
twice.It should be
let host = reqUrlObject.host || reqUrlObject.hostname || headers.host || 'localhost';
Additional context
Add any other context about the problem here.
We should make tests more strict.
The text was updated successfully, but these errors were encountered: