mirror of https://github.com/status-im/consul.git
consul: Allow providing a path for the state store
This commit is contained in:
parent
f8fc46dc57
commit
be8051ec7e
|
@ -107,7 +107,12 @@ func NewStateStore(logOutput io.Writer) (*StateStore, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return NewStateStorePath(path, logOutput)
|
||||
}
|
||||
|
||||
// NewStateStorePath is used to create a new state store at a given path
|
||||
// The path is cleared on closing.
|
||||
func NewStateStorePath(path string, logOutput io.Writer) (*StateStore, error) {
|
||||
// Open the env
|
||||
env, err := mdb.NewEnv()
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue