mirror of
https://github.com/golang/go
synced 2024-11-19 00:54:42 -07:00
net/http: add missing newline in list of leaked goroutines
LGTM=bradfitz R=bradfitz CC=golang-codereviews https://golang.org/cl/168860044
This commit is contained in:
parent
9dc1cce38d
commit
8985c091e4
@ -70,7 +70,7 @@ func goroutineLeaked() bool {
|
||||
}
|
||||
fmt.Fprintf(os.Stderr, "Too many goroutines running after net/http test(s).\n")
|
||||
for stack, count := range stackCount {
|
||||
fmt.Fprintf(os.Stderr, "%d instances of:\n%s", count, stack)
|
||||
fmt.Fprintf(os.Stderr, "%d instances of:\n%s\n", count, stack)
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user