Skip to content

Commit

Permalink
Disable deprecated druid connector by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Barrett committed Nov 25, 2019
1 parent acf0753 commit 0da10d9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion superset/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,15 @@ def _try_json_readsha(filepath):
# [TimeZone List]
# See: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
# other tz can be overridden by providing a local_config
DRUID_IS_ACTIVE = True
DRUID_TZ = tz.tzutc()
DRUID_ANALYSIS_TYPES = ["cardinality"]

# Legacy Druid connector
# Druid supports a SQL interface in its newer versions.
# Setting this flag to True enables the deprecated, API-based Druid
# connector. This feature may be removed at a future date.
DRUID_IS_ACTIVE = False

# ----------------------------------------------------
# AUTHENTICATION CONFIG
# ----------------------------------------------------
Expand Down

0 comments on commit 0da10d9

Please sign in to comment.