From 53e30fcc08515a36b62da53c5e318ff9cd9b0080 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sun, 18 Dec 2016 14:27:42 -0800 Subject: [PATCH] http: request - response limit. --- lib/http/request.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/http/request.js b/lib/http/request.js index a4d717a7..7998cf69 100644 --- a/lib/http/request.js +++ b/lib/http/request.js @@ -43,7 +43,7 @@ function RequestOptions(options) { this.query = null; this.body = null; this.auth = null; - this.limit = 5 << 20; + this.limit = 10 << 20; this.maxRedirects = 5; this.timeout = 5000; this.buffer = false;