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
iferr!=nil&&// If there is an error we need to return but:
195
+
c.ctx.Err() !=err&&// 1. Ignore the context error if the context is cancelled or exceeds the deadline (RunWithContext could return c.ctx.Err() which is Canceled or DeadlineExceeded)
196
+
err.Error() !="signal: killed" { // 2. We should not pass up errors due to the program being killed
195
197
returnfmt.Errorf("failed to run attr-check. Error: %w\nStderr: %s", err, stdErr.String())
0 commit comments