Files

21 lines
365 B
Go

package grpc
import (
"context"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
// IsCanceled checks whether an error comes from an operation being canceled
func IsCanceled(err error) bool {
if err == context.Canceled {
return true
}
s, ok := status.FromError(err)
if ok && s.Code() == codes.Canceled {
return true
}
return false
}