Uncommenting try block

This commit is contained in:
Maxime Beauchemin 2015-09-22 16:53:06 -07:00
parent 449441fed5
commit e4a5f34f71
2 changed files with 4 additions and 5 deletions

View File

@ -1,11 +1,12 @@
# TODO
* Add a per-datasource permission
* in/notin filters autocomplete
* DRUID: Allow for post aggregations (ratios!)
* compare time ranges
* csv export out of table view
* SQL: Find a way to manage granularity
* Create ~/.panoramix/ to host DB and config, generate default config there
* Add a per-datasource permission
* Reintroduce query and stopwatch
* Sort tooltip
* Add a "Test Connection" button in Add Connection menu

View File

@ -288,9 +288,8 @@ class Panoramix(BaseView):
status=status,
mimetype="application/json")
else:
#try:
resp = self.render_template("panoramix/viz.html", viz=obj)
'''
try:
resp = self.render_template("panoramix/viz.html", viz=obj)
except Exception as e:
if config.DEBUG:
raise(e)
@ -298,7 +297,6 @@ class Panoramix(BaseView):
str(e),
status=500,
mimetype="application/json")
'''
return resp
@has_access