You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the qryuser.go and qrypost.go files, the Exec() methods should be replaced with ExecContext(). The reason for this is to be able to take advantage of the the cancellation/timeout that contexts can initiate.
Sure, sounds good. I think the main takeaway will be having the project building and tests running. I expect I'll have a story or two blocking (probably the actions bot issue, at least).
In the qryuser.go and qrypost.go files, the
Exec()
methods should be replaced withExecContext()
. The reason for this is to be able to take advantage of the the cancellation/timeout that contexts can initiate.See an example of
ExecContext()
in the upsertUser method in qryuser.go.A/C
The text was updated successfully, but these errors were encountered: