in gce-containers-startup/runtime/runtime.go [352:357]
func contextError(ctx context.Context, operationType string) error {
if ctx.Err() == context.DeadlineExceeded {
return operationTimeout{err: ctx.Err(), operationType: operationType}
}
return ctx.Err()
}