mirror of
https://github.com/gluster/glusterd2.git
synced 2026-02-05 12:45:38 +01:00
13 lines
395 B
Go
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")
|
|
)
|