move example to different port
[multitaskhttpd.git] / jsonapp.py
index 12781ba43447aa079ebd40116eb0f56d0636b6cc..9ae9d0f8268067826010ba2c5ef0c045e9b90ffd 100644 (file)
@@ -17,6 +17,6 @@ class MyApp(SimpleJSONRPCRequestHandler, BaseApp):
 httpd.set_debug(True)
 agent = HTTPServer()   
 agent.apps = dict({'/json': MyApp, '*': App})
-agent.start()
+agent.start(port=8089)
 multitask.run()