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
request_id
Currently if a project is using this module, we loose track of the request when it is used since no request_id can be forwarded.
The text was updated successfully, but these errors were encountered:
At Scalingo we use go-handler to automatically set a request ID:
https://github.com/Scalingo/go-handlers/blob/639d40004569f616e04c5d2d506126d54d667e3f/request_id_middleware.go
We would like to update the Do method to take a context.Context in argument:
Do
context.Context
go-scalingo/http/api_request.go
Line 70 in 6714c0f
So that we can set the request ID in the requests to the API here (if there is a request ID in the context):
Line 105 in 6714c0f
Fixing this issue will lead to a new major version.
Sorry, something went wrong.
EtienneM
Successfully merging a pull request may close this issue.
Currently if a project is using this module, we loose track of the request when it is used since no
request_id
can be forwarded.The text was updated successfully, but these errors were encountered: