1
0
Fork 0

Merge pull request #761 from rqlite/otoolep-patch-1

ABL
master
Philip O'Toole 4 years ago committed by GitHub
commit 2da37ba1c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,6 +20,7 @@ import (
) )
const ( const (
// SnapshotInterval is the period between snapshot checks
SnapshotInterval = time.Second SnapshotInterval = time.Second
) )
@ -147,6 +148,7 @@ func (n *Node) QueryParameterized(stmt []interface{}) (string, error) {
return n.postQuery(string(j)) return n.postQuery(string(j))
} }
// Noop inserts a noop command into the Store's Raft log.
func (n *Node) Noop(id string) error { func (n *Node) Noop(id string) error {
return n.Store.Noop(id) return n.Store.Noop(id)
} }

Loading…
Cancel
Save