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
ctx, cancel:=context.WithCancel(context.Background()) // want "context.WithCancel should be replaced with context.WithCancelCause"
11
+
ctx, cancel=context.WithTimeout(context.Background(), 1*time.Second) // want "context.WithTimeout should be replaced with context.WithTimeoutCause"
12
+
ctx, cancel=context.WithDeadline(context.Background(), time.Now().Add(1*time.Second)) // want "context.WithDeadline should be replaced with context.WithDeadlineCause"
0 commit comments