From 14a8d2f5b83a1ea28abbb490f6c94c43b4e1f960 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Tue, 9 Dec 2014 18:18:14 +0100 Subject: always use the app dispatcher --- libmproxy/web/app.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libmproxy/web/app.py') diff --git a/libmproxy/web/app.py b/libmproxy/web/app.py index 05ca7e79..3fce9d64 100644 --- a/libmproxy/web/app.py +++ b/libmproxy/web/app.py @@ -49,10 +49,6 @@ class FlowClear(tornado.web.RequestHandler): self.application.state.clear() -class FlowUpdates(WebSocketEventBroadcaster): - connections = set() - - class ClientConnection(WebSocketEventBroadcaster): connections = set() @@ -65,7 +61,6 @@ class Application(tornado.web.Application): (r"/updates", ClientConnection), (r"/flows", Flows), (r"/flows/clear", FlowClear), - (r"/flows/updates", FlowUpdates), ] settings = dict( template_path=os.path.join(os.path.dirname(__file__), "templates"), -- cgit v1.2.3