influxdb/raft/errors.go

10 lines
231 B
Go
Raw Normal View History

2014-09-03 20:28:25 +00:00
package raft
import "errors"
var (
// ErrLogEntryTooLarge is returned when a log entry's data is larger than
// the maximum allowed value specified in MaxLogEntrySize.
ErrLogEntryTooLarge = errors.New("log entry too large")
)