Mercurial > code > home > repos > homeauto
changeset 1454:c3efea9917f4
graph path now has 'store' in it
Ignore-this: f20acfa66fa56e5b4e076e76cad140f6
darcs-hash:01a6fa048f8d946b52dbcd7102f236d8ccf01898
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Wed, 25 Sep 2019 17:29:47 -0700 |
parents | ea942d383f62 |
children | 1a7cd0cff3eb |
files | service/store/store.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/service/store/store.py Wed Sep 25 17:29:12 2019 -0700 +++ b/service/store/store.py Wed Sep 25 17:29:47 2019 -0700 @@ -75,8 +75,8 @@ reactor.listenTCP(port, cyclone.web.Application([ (r"/()", cyclone.web.StaticFileHandler, {"path": ".", "default_filename": "index.html"}), - (r"/graph", CycloneGraphHandler, {'masterGraph': masterGraph}), - (r"/graph/events", CycloneGraphEventsHandler, + (r"/store", CycloneGraphHandler, {'masterGraph': masterGraph}), + (r"/store/events", CycloneGraphEventsHandler, {'masterGraph': masterGraph}), (r'/values', ValuesResource), ], masterGraph=masterGraph, dbFile=dbFile, debug=arg['-v']),