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
So instead of:
ds := datastore.Get(c) err := ds.Get(model) err := ds.Get(model)
it would be
err := ds.Get(c, model) err := ds.Get(c, model)
This would allow per-rpc timeouts to be a lot less awkward (since you're passing the context in).
This would be done to all services (adding RawInterface if necessary for services that don't split them apart).
The text was updated successfully, but these errors were encountered:
suggested by @vadimsht
Sorry, something went wrong.
3715a27
No branches or pull requests
So instead of:
it would be
This would allow per-rpc timeouts to be a lot less awkward (since you're passing the context in).
This would be done to all services (adding RawInterface if necessary for services that don't split them apart).
The text was updated successfully, but these errors were encountered: