Upping ycmd max request size to 1000kb

This commit is contained in:
Sascha G. 2013-10-30 22:50:58 +01:00
parent 0a05ba8c21
commit 2ea2444e66

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 = 500 * 1024
bottle.Request.MEMFILE_MAX = 1000 * 1024
# TODO: rename these to _lower_case
SERVER_STATE = None