1
0
mirror of https://github.com/google/gops.git synced 2024-11-19 20:31:58 +02:00

check for net error closed error instead of hack

This commit is contained in:
Simon Blixenkrone 2024-05-03 13:59:05 +02:00 committed by Tobias Klauser
parent 4e6c77eaaa
commit 48b357e78c

View File

@ -22,7 +22,6 @@ import (
"runtime/pprof"
"runtime/trace"
"strconv"
"strings"
"sync"
"syscall"
"time"
@ -120,8 +119,7 @@ func listen(l net.Listener) {
for {
fd, err := l.Accept()
if err != nil {
// No great way to check for this, see https://golang.org/issues/4373.
if !strings.Contains(err.Error(), "use of closed network connection") {
if !errors.Is(err, net.ErrClosed) {
fmt.Fprintf(os.Stderr, "gops: %v\n", err)
}
if netErr, ok := err.(net.Error); ok && !netErr.Temporary() {