Remove duplicate colon from warning log.

doAction()->log.TracebackAll() will append a colon.

PiperOrigin-RevId: 315842611
This commit is contained in:
Nicolas Lacasse
2020-06-10 23:23:07 -07:00
committed by gVisor bot
parent b436b9717e
commit a87c74bc54
+1 -1
View File
@@ -329,7 +329,7 @@ func (w *Watchdog) report(offenders map[*kernel.Task]*offender, newTaskFound boo
func (w *Watchdog) reportStuckWatchdog() {
var buf bytes.Buffer
buf.WriteString("Watchdog goroutine is stuck:")
buf.WriteString("Watchdog goroutine is stuck")
w.doAction(w.TaskTimeoutAction, false, &buf)
}