From 3f7b768c5ba48db137f1a617c74a6d750be5a6b4 Mon Sep 17 00:00:00 2001 From: AAfghahi <48933336+AAfghahi@users.noreply.github.com> Date: Tue, 5 Apr 2022 17:32:16 -0400 Subject: [PATCH] depreciated api endpoint (#19524) --- superset/views/sql_lab.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/superset/views/sql_lab.py b/superset/views/sql_lab.py index 0e17f46f16..60732fbcd1 100644 --- a/superset/views/sql_lab.py +++ b/superset/views/sql_lab.py @@ -14,6 +14,8 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. +import logging + import simplejson as json from flask import g, redirect, request, Response from flask_appbuilder import expose @@ -30,6 +32,8 @@ from superset.utils import core as utils from .base import BaseSupersetView, DeleteMixin, json_success, SupersetModelView +logger = logging.getLogger(__name__) + class SavedQueryView(SupersetModelView, DeleteMixin): datamodel = SQLAInterface(SavedQuery) @@ -318,4 +322,7 @@ class SqlLab(BaseSupersetView): @has_access def my_queries(self) -> FlaskResponse: # pylint: disable=no-self-use """Assigns a list of found users to the given role.""" + logger.warning( + "This endpoint is deprecated and will be removed in the next major release" + ) return redirect("/savedqueryview/list/?_flt_0_user={}".format(g.user.get_id()))