ycmd now uses Waitress instead of CherryPy

This commit is contained in:
Strahinja Val Markovic 2013-10-04 12:45:33 -07:00
parent d7904a7eb1
commit 88a260d448

View File

@ -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__":