mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/storage: typo fix in error message: allowd->allowed
This commit is contained in:
parent
ae04378424
commit
b65236530c
1 changed files with 1 additions and 1 deletions
|
@ -1248,7 +1248,7 @@ func (s *Storage) add(rows []rawRow, mrs []MetricRow, precisionBits uint8) ([]ra
|
||||||
if mr.Timestamp > maxTimestamp {
|
if mr.Timestamp > maxTimestamp {
|
||||||
// Skip rows with too big timestamps significantly exceeding the current time.
|
// Skip rows with too big timestamps significantly exceeding the current time.
|
||||||
if firstWarn == nil {
|
if firstWarn == nil {
|
||||||
firstWarn = fmt.Errorf("cannot insert row with too big timestamp %d exceeding the current time; maximum allowd timestamp is %d; "+
|
firstWarn = fmt.Errorf("cannot insert row with too big timestamp %d exceeding the current time; maximum allowed timestamp is %d; "+
|
||||||
"propbably you need updating -retentionPeriod command-line flag",
|
"propbably you need updating -retentionPeriod command-line flag",
|
||||||
mr.Timestamp, maxTimestamp)
|
mr.Timestamp, maxTimestamp)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue