1
0
mirror of https://github.com/gluster/glusterd2.git synced 2026-02-05 12:45:38 +01:00
Files
glusterd2/pkg/elasticetcd/errors.go
2017-06-21 16:40:29 +05:30

13 lines
395 B
Go

package elasticetcd
import (
"errors"
)
var (
// ErrClientNotAvailable is returned when the ElasticEtcd client is not present
ErrClientNotAvailable = errors.New("etcd client not available")
// ErrAddingSelfToServerList is returned when an ElasticEtcd instance fails to add itself to the nominated servers list
ErrAddingSelfToServerList = errors.New("failed to add self to server list")
)