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
As announced in v0.3.0 we will drop all WithContext() methods in v0.5.0 and require that the non-WithContext() methods require a context.Context
WithContext()
context.Context
func (c *Client) Read(...) {...} func (c *Client) ReadWithContext(ctx context.Context, ...) { ... }
will become
func (c *Client) Read(ctx context.Context, ...) { ... }
The text was updated successfully, but these errors were encountered:
drop WithContext
eea9f6d
This patch drops the WithContext() methods and requires that all methods have a context. Fixes #553
This needs a rebase after v0.3.1
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
As announced in v0.3.0 we will drop all
WithContext()
methods in v0.5.0 and require that the non-WithContext()
methods require acontext.Context
will become
The text was updated successfully, but these errors were encountered: