Browse Source

lower the max message size

pull/965/head
Anton Kaliaev 7 years ago
parent
commit
06aece31cf
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      consensus/wal.go

+ 3
- 1
consensus/wal.go View File

@ -18,7 +18,7 @@ import (
)
const (
maxMsgSizeBytes = 10024 // 10MB
maxMsgSizeBytes = 1024 // 1MB, must be greater than BlockPartSizeBytes
)
//--------------------------------------------------------
@ -139,6 +139,7 @@ func (wal *baseWAL) Save(msg WALMessage) {
// WALSearchOptions are optional arguments to SearchForEndHeight.
type WALSearchOptions struct {
// IgnoreDataCorruptionErrors set to true will result in skipping data corruption errors.
IgnoreDataCorruptionErrors bool
}
@ -227,6 +228,7 @@ func IsDataCorruptionError(err error) bool {
return ok
}
// DataCorruptionError is an error that occures if data on disk was corrupted.
type DataCorruptionError struct {
cause error
}


Loading…
Cancel
Save