We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed2041c commit 205e7d9Copy full SHA for 205e7d9
src/redis-live.py
@@ -15,16 +15,16 @@
15
16
# Bootup
17
application = tornado.web.Application([
18
- (r"/api/servers", ServerListController),
+ (r"/api/servers", ServerListController),
19
(r"/api/info", InfoController),
20
- (r"/api/memory", MemoryController),
21
- (r"/api/commands", CommandsController),
22
- (r"/api/topcommands", TopCommandsController),
23
- (r"/api/topkeys", TopKeysController),
+ (r"/api/memory", MemoryController),
+ (r"/api/commands", CommandsController),
+ (r"/api/topcommands", TopCommandsController),
+ (r"/api/topkeys", TopKeysController),
24
(r"/(.*)", BaseStaticFileHandler, {"path": "www"})
25
], debug="True")
26
27
28
if __name__ == "__main__":
29
application.listen(8888)
30
- tornado.ioloop.IOLoop.instance().start()
+ tornado.ioloop.IOLoop.instance().start()
0 commit comments