Upping ycmd max request size to 500kb

Fixes #624
This commit is contained in:
Strahinja Val Markovic 2013-10-29 12:16:15 -07:00
parent f46bc7335e
commit 9734c473e2

View File

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