add validate config for raft (#4332)
This commit is contained in:
committed by
GitHub
parent
5c783c16a1
commit
de4545c28b
@@ -121,6 +121,10 @@ func NewHashicorpRaftServer(option *RaftServerOption) (*RaftServer, error) {
|
|||||||
c.LogLevel = "Error"
|
c.LogLevel = "Error"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := raft.ValidateConfig(c); err != nil {
|
||||||
|
return nil, fmt.Errorf(`raft.ValidateConfig: %v`, err)
|
||||||
|
}
|
||||||
|
|
||||||
if option.RaftBootstrap {
|
if option.RaftBootstrap {
|
||||||
os.RemoveAll(path.Join(s.dataDir, ldbFile))
|
os.RemoveAll(path.Join(s.dataDir, ldbFile))
|
||||||
os.RemoveAll(path.Join(s.dataDir, sdbFile))
|
os.RemoveAll(path.Join(s.dataDir, sdbFile))
|
||||||
|
|||||||
Reference in New Issue
Block a user