From 0da10d9feb266234df6a97c8828247a2282d143c Mon Sep 17 00:00:00 2001 From: Will Barrett Date: Tue, 5 Nov 2019 15:48:17 -0800 Subject: [PATCH] Disable deprecated druid connector by default --- superset/config.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/superset/config.py b/superset/config.py index 1e6ff616044df..7391e284e98fc 100644 --- a/superset/config.py +++ b/superset/config.py @@ -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 # ----------------------------------------------------