Up the field limit to 2mb

This commit is contained in:
Girish Ramakrishnan
2015-04-13 23:58:08 -07:00
parent 079b3a50e3
commit 4f0b2a27fb
+1 -1
View File
@@ -32,7 +32,7 @@ function initializeExpressSync() {
var httpServer = http.createServer(app);
var QUERY_LIMIT = '10mb', // max size for json and urlencoded queries
FIELD_LIMIT = 2 * 1024; // max fields that can appear in multipart
FIELD_LIMIT = 2 * 1024 * 1024; // max fields that can appear in multipart
var REQUEST_TIMEOUT = 10000; // timeout for all requests