4f2b443a27
This rewrites the Go imports after switching to the new github org. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
19 lines
359 B
Go
19 lines
359 B
Go
package content
|
|
|
|
import (
|
|
"github.com/containerd/containerd/content"
|
|
"github.com/pkg/errors"
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/codes"
|
|
)
|
|
|
|
func rewriteGRPCError(err error) error {
|
|
switch grpc.Code(errors.Cause(err)) {
|
|
case codes.AlreadyExists:
|
|
return content.ErrExists
|
|
case codes.NotFound:
|
|
return content.ErrNotFound
|
|
}
|
|
|
|
return err
|
|
}
|