2
0
mirror of https://github.com/xcat2/confluent.git synced 2025-01-15 12:17:47 +00:00

Fix syntax error in httpapi rework

This commit is contained in:
Jarrod Johnson 2013-09-14 21:37:23 -04:00
parent 9ecc1aae44
commit 3f46ffd25d

View File

@ -147,7 +147,7 @@ def serve():
# either making apache deal with it
# or just supporting nginx or lighthttpd
# for now, http port access
scgi.WSGIServer(resourcehandler, bindAddress=("localhost",4004)).run())
scgi.WSGIServer(resourcehandler, bindAddress=("localhost",4004)).run()
class HttpApi(object):