parent
8c4eff2d23
commit
a6239adf76
|
@ -27,7 +27,6 @@
|
||||||
"client/structs/...",
|
"client/structs/...",
|
||||||
"client/taskenv/...",
|
"client/taskenv/...",
|
||||||
"command/agent/...",
|
"command/agent/...",
|
||||||
"command/raft_tools/...",
|
|
||||||
"command/ui/...",
|
"command/ui/...",
|
||||||
"helper/...",
|
"helper/...",
|
||||||
"internal/...",
|
"internal/...",
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
// Copyright (c) HashiCorp, Inc.
|
|
||||||
// SPDX-License-Identifier: MPL-2.0
|
|
||||||
|
|
||||||
package rafttools
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
raftboltdb "github.com/hashicorp/raft-boltdb/v2"
|
|
||||||
)
|
|
||||||
|
|
||||||
func RaftState(p string) (store *raftboltdb.BoltStore, firstIdx uint64, lastIdx uint64, err error) {
|
|
||||||
s, err := raftboltdb.NewBoltStore(p)
|
|
||||||
if err != nil {
|
|
||||||
return nil, 0, 0, fmt.Errorf("failed to open raft logs: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
firstIdx, err = s.FirstIndex()
|
|
||||||
if err != nil {
|
|
||||||
return nil, 0, 0, fmt.Errorf("failed to fetch first index: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
lastIdx, err = s.LastIndex()
|
|
||||||
if err != nil {
|
|
||||||
return nil, 0, 0, fmt.Errorf("failed to fetch last index: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return s, firstIdx, lastIdx, nil
|
|
||||||
}
|
|
Loading…
Reference in New Issue