mirror of
https://github.com/gluster/glusterd2.git
synced 2026-02-05 12:45:38 +01:00
be capitalized,make first letter as lower case Signed-off-by: Madhu Rajanna <mrajanna@redhat.com>
15 lines
472 B
Go
15 lines
472 B
Go
package rebalance
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrVolNotDistribute : Cannot run rebalance on a non distribute volume
|
|
ErrVolNotDistribute = errors.New("not a distribute volume")
|
|
// ErrRebalanceNotStarted : Rebalance not started on the volume
|
|
ErrRebalanceNotStarted = errors.New("rebalance not started")
|
|
// ErrRebalanceInvalidOption : Invalid option provided to the rebalance start command
|
|
ErrRebalanceInvalidOption = errors.New("invalid Rebalance start option")
|
|
)
|