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
Proposal add a context.Context parameter for method NewRequest in interface Client
current:
NewRequest(method, url string) *resty.Request
proposal:
NewRequest(ctx context.Context, method, url string) *resty.Request
So that, we can initialize the testy.Request with some information from the Context, such as injecting trace ID and JWT token in http header .
The text was updated successfully, but these errors were encountered:
thanks for proposal @cloudfly . It makes sense to me. WDYT, @devholic ?
Sorry, something went wrong.
No branches or pull requests
Proposal
add a context.Context parameter for method NewRequest in interface Client
current:
proposal:
So that, we can initialize the testy.Request with some information from the Context, such as injecting trace ID and JWT token in http header .
The text was updated successfully, but these errors were encountered: