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.

21 lines
366 B
Go

package themis
import "strings"
var (
PutFamilyName = []byte("#p")
DelFamilyName = []byte("#d")
LockFamilyName = []byte("L")
)
const (
ThemisServiceName string = "ThemisService"
)
func isWrongRegionErr(err error) bool {
if err != nil {
return strings.Contains(err.Error(), "org.apache.hadoop.hbase.regionserver.WrongRegionException")
}
return false
}