You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
377 B
Go
18 lines
377 B
Go
package codes
|
|
|
|
import (
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
)
|
|
|
|
// Acceptable checks if given error is acceptable.
|
|
func Acceptable(err error) bool {
|
|
switch status.Code(err) {
|
|
case codes.DeadlineExceeded, codes.Internal, codes.Unavailable, codes.DataLoss,
|
|
codes.Unimplemented, codes.ResourceExhausted:
|
|
return false
|
|
default:
|
|
return true
|
|
}
|
|
}
|