mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
app/vminsert/concurrencylimiter: typo fix in the error message
This commit is contained in:
parent
f4252f87e6
commit
c0baa977cf
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ func Do(f func() error) error {
|
||||||
case <-t.C:
|
case <-t.C:
|
||||||
timerpool.Put(t)
|
timerpool.Put(t)
|
||||||
concurrencyLimitErrors.Inc()
|
concurrencyLimitErrors.Inc()
|
||||||
return fmt.Errorf("the server is overloaded with %d concurrent inserts; either -maxConcurrentInserts or reduce the load", cap(ch))
|
return fmt.Errorf("the server is overloaded with %d concurrent inserts; either increase -maxConcurrentInserts or reduce the load", cap(ch))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue