mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-09 00:33:28 -04:00
Remove fragile link to docs from code. (#11928)
This commit is contained in:
parent
649dc702e3
commit
8096e7d856
1 changed files with 2 additions and 4 deletions
|
|
@ -1240,10 +1240,8 @@ func (b *RaftBackend) Get(ctx context.Context, path string) (*physical.Entry, er
|
|||
if entry != nil {
|
||||
valueLen := len(entry.Value)
|
||||
if uint64(valueLen) > b.maxEntrySize {
|
||||
b.logger.Warn(
|
||||
"retrieved entry value is too large; see https://www.vaultproject.io/docs/configuration/storage/raft#raft-parameters",
|
||||
"size", valueLen, "suggested", b.maxEntrySize,
|
||||
)
|
||||
b.logger.Warn("retrieved entry value is too large, has raft's max_entry_size been reduced?",
|
||||
"size", valueLen, "max_entry_size", b.maxEntrySize)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue