mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-19 18:07:45 +08:00
14 lines
246 B
Go
14 lines
246 B
Go
package errdefs
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/moby/buildkit/util/grpcerrors"
|
|
"google.golang.org/grpc/codes"
|
|
)
|
|
|
|
func IsCanceled(err error) bool {
|
|
return errors.Is(err, context.Canceled) || grpcerrors.Code(err) == codes.Canceled
|
|
}
|