Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/vt/vttablet/tabletserver/tx_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func (axp *TxPool) RollbackNonBusy(ctx context.Context) {

func (axp *TxPool) transactionKiller() {
defer tabletenv.LogError()
for _, v := range axp.activePool.GetOutdated(time.Duration(axp.Timeout()), "for rollback") {
for _, v := range axp.activePool.GetOutdated(time.Duration(axp.Timeout()), "for tx killer rollback") {
conn := v.(*TxConnection)
log.Warningf("killing transaction (exceeded timeout: %v): %s", axp.Timeout(), conn.Format(nil))
tabletenv.KillStats.Add("Transactions", 1)
Expand Down