You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by cc...@apache.org on 2018/03/13 18:50:48 UTC

[incubator-superset] 01/01: [slice_json] pass slice id to get_form_data()

This is an automated email from the ASF dual-hosted git repository.

ccwilliams pushed a commit to branch chris--fix-annotations
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git

commit 0210bf052287a5764951b7b5c26b5887b24856ef
Author: Chris Williams <ch...@airbnb.com>
AuthorDate: Tue Mar 13 11:50:31 2018 -0700

    [slice_json] pass slice id to get_form_data()
---
 superset/views/core.py | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/superset/views/core.py b/superset/views/core.py
index ad06b25..c05eaa6 100755
--- a/superset/views/core.py
+++ b/superset/views/core.py
@@ -998,6 +998,7 @@ class Superset(BaseSupersetView):
         # the form_data from the DB with the other form_data provided
         slice_id = form_data.get('slice_id') or slice_id
         slc = None
+
         if slice_id:
             slc = db.session.query(models.Slice).filter_by(id=slice_id).first()
             slice_form_data = slc.form_data.copy()
@@ -1122,10 +1123,10 @@ class Superset(BaseSupersetView):
     @expose('/slice_json/<slice_id>')
     def slice_json(self, slice_id):
         try:
-            viz_obj = self.get_viz(slice_id)
-            datasource_type = viz_obj.datasource.type
-            datasource_id = viz_obj.datasource.id
-            form_data, slc = self.get_form_data()
+            form_data, slc = self.get_form_data(slice_id)
+            datasource_type = slc.datasource.type
+            datasource_id = slc.datasource.id
+
         except Exception as e:
             return json_error_response(
                 utils.error_msg_from_exception(e),

-- 
To stop receiving notification emails like this one, please contact
ccwilliams@apache.org.