diff --git a/internal/nodes/http_request.go b/internal/nodes/http_request.go index 834e068..0e38cea 100644 --- a/internal/nodes/http_request.go +++ b/internal/nodes/http_request.go @@ -1712,7 +1712,7 @@ func (this *HTTPRequest) canIgnore(err error) bool { } // 客户端主动取消 - if err == errWritingToClient || err == context.Canceled || err == io.ErrShortWrite || strings.Contains(err.Error(), "write: connection timed out") || strings.Contains(err.Error(), "write: broken pipe") { + if err == errWritingToClient || err == context.Canceled || err == io.ErrShortWrite || strings.Contains(err.Error(), "write: connection") || strings.Contains(err.Error(), "write: broken pipe") { return true }