open-vault/physical/raft/raft_util.go

16 lines
287 B
Go

// +build !enterprise
package raft
import (
"context"
"errors"
)
const nonVotersAllowed = false
// AddPeer adds a new server to the raft cluster
func (b *RaftBackend) AddNonVotingPeer(ctx context.Context, peerID, clusterAddr string) error {
return errors.New("not implemented")
}