Skip to content

Commit

Permalink
Bugfix for tracking url transformation
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeingBoy authored Oct 28, 2021
1 parent b5246b2 commit 3886150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/db_engine_specs/hive.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def handle_cursor( # pylint: disable=too-many-locals
str(query_id),
tracking_url,
)
tracking_url = current_app.config["TRACKING_URL_TRANSFORMER"]
tracking_url = current_app.config["TRACKING_URL_TRANSFORMER"](tracking_url)
logger.info(
"Query %s: Transformation applied: %s",
str(query_id),
Expand Down

0 comments on commit 3886150

Please sign in to comment.