diff --git a/internal/nodes/http_request.go b/internal/nodes/http_request.go index 6e7acfb..9478a9f 100644 --- a/internal/nodes/http_request.go +++ b/internal/nodes/http_request.go @@ -1625,7 +1625,7 @@ func (this *HTTPRequest) addError(err error) { // 计算合适的buffer size func (this *HTTPRequest) bytePool(contentLength int64) *utils.BytePool { if contentLength < 0 { - return utils.BytePool4k + return utils.BytePool16k } if contentLength < 8192 { // 8K return utils.BytePool1k