зеркало из https://github.com/github/vitess-gh.git
Suppress tx_pool_full logging, too spammy.
This commit is contained in:
Родитель
913d7618c8
Коммит
5d1f5238da
|
@ -285,7 +285,8 @@ func handleExecError(query *proto.Query, err *error, logStats *sqlQueryStats) {
|
|||
}
|
||||
*err = terr
|
||||
terr.RecordStats()
|
||||
if terr.ErrorType == RETRY || terr.SqlError == mysql.DUP_ENTRY { // suppress these errors in logs
|
||||
// suppress these errors in logs
|
||||
if terr.ErrorType == RETRY || terr.ErrorType == TX_POOL_FULL || terr.SqlError == mysql.DUP_ENTRY {
|
||||
return
|
||||
}
|
||||
log.Errorf("%s: %v", terr.Message, query)
|
||||
|
|
Загрузка…
Ссылка в новой задаче