From 88a260d448fe6e204a6f4f6eb115d34a937d51de Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Fri, 4 Oct 2013 12:45:33 -0700 Subject: [PATCH] ycmd now uses Waitress instead of CherryPy --- python/ycm/server/ycmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ycm/server/ycmd.py b/python/ycm/server/ycmd.py index 50751b9a..acc7c2f8 100755 --- a/python/ycm/server/ycmd.py +++ b/python/ycm/server/ycmd.py @@ -233,7 +233,7 @@ def Main(): level = numeric_level ) LOGGER = logging.getLogger( __name__ ) - run( app = app, host = args.host, port = args.port, server='cherrypy' ) + run( app = app, host = args.host, port = args.port, server='waitress' ) if __name__ == "__main__":