2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-02-16 18:49:04 +00:00

Remove accidental change

keepalive was disabled, which negatively impacted
web ui performance.  Re-enable.
This commit is contained in:
Jarrod Johnson 2018-06-19 11:07:23 -04:00
parent 38898ca921
commit 6ba8ca2fa2

View File

@ -785,7 +785,7 @@ def serve(bind_host, bind_port):
' a second\n')
eventlet.sleep(1)
eventlet.wsgi.server(sock, resourcehandler, log=False, log_output=False,
debug=False, socket_timeout=60, keepalive=False)
debug=False, socket_timeout=60)
class HttpApi(object):