From 9734c473e21da4c9632d87cbc149a63b012c69ce Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Tue, 29 Oct 2013 12:16:15 -0700 Subject: [PATCH] Upping ycmd max request size to 500kb Fixes #624 --- python/ycm/server/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ycm/server/handlers.py b/python/ycm/server/handlers.py index 6640511a..4db75554 100644 --- a/python/ycm/server/handlers.py +++ b/python/ycm/server/handlers.py @@ -43,7 +43,7 @@ from ycm import extra_conf_store # num bytes for the request body buffer; request.json only works if the request # size is less than this -bottle.Request.MEMFILE_MAX = 300 * 1024 +bottle.Request.MEMFILE_MAX = 500 * 1024 # TODO: rename these to _lower_case SERVER_STATE = None