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
This issue is labeled as requiring an update from the reporter, and no update has been received after 7 days. If no update is provided in the next 7 days, this issue will be automatically closed.
I would do a grep for context.Background() in our tests (* - see below); any usages should appear in a context.WithTimeout or context.WithDeadline call as a rule. It's possible some tests add a timeout later, or a deadline isn't relevant for some tests, but I believe those should be rare.
context.Background
is used in many tests/benchmarks. Which might be misleading for users.Some of the tests expect an error, so
context.Background
is probably OK.We should check and make sure
context.Background
doesn't cause any problem.The text was updated successfully, but these errors were encountered: