http: request - response limit.

This commit is contained in:
Christopher Jeffrey 2016-12-18 14:27:42 -08:00
parent 856957eee9
commit 53e30fcc08
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -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;