Uncommenting try block
This commit is contained in:
parent
449441fed5
commit
e4a5f34f71
3
TODO.md
3
TODO.md
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue