You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2023/04/10 20:43:44 UTC

[superset] branch master updated: chore(feature flag): removing unused ENFORCE_DB_ENCRYPTION_UI flag (#23640)

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

rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new ca408a7159 chore(feature flag): removing unused ENFORCE_DB_ENCRYPTION_UI flag (#23640)
ca408a7159 is described below

commit ca408a71594b0c394159c776c0f2669479897e5b
Author: Evan Rusackas <ev...@preset.io>
AuthorDate: Mon Apr 10 14:43:36 2023 -0600

    chore(feature flag): removing unused ENFORCE_DB_ENCRYPTION_UI flag (#23640)
---
 RESOURCES/FEATURE_FLAGS.md | 1 -
 superset/config.py         | 3 ---
 2 files changed, 4 deletions(-)

diff --git a/RESOURCES/FEATURE_FLAGS.md b/RESOURCES/FEATURE_FLAGS.md
index a8f4cdfa32..3374669870 100644
--- a/RESOURCES/FEATURE_FLAGS.md
+++ b/RESOURCES/FEATURE_FLAGS.md
@@ -82,7 +82,6 @@ These features flags are **safe for production** and have been tested.
 - ENABLE_DND_WITH_CLICK_UX
 - ENABLE_EXPLORE_DRAG_AND_DROP
 - ENABLE_TEMPLATE_PROCESSING
-- ENFORCE_DB_ENCRYPTION_UI
 - ESCAPE_MARKDOWN_HTML
 - LISTVIEWS_DEFAULT_CARD_VIEW
 - SCHEDULED_QUERIES [(docs)](https://superset.apache.org/docs/installation/alerts-reports)
diff --git a/superset/config.py b/superset/config.py
index 123ff902c9..e26baa9a4e 100644
--- a/superset/config.py
+++ b/superset/config.py
@@ -456,9 +456,6 @@ DEFAULT_FEATURE_FLAGS: Dict[str, bool] = {
     "ALERTS_ATTACH_REPORTS": True,
     # FORCE_DATABASE_CONNECTIONS_SSL is depreciated.
     "FORCE_DATABASE_CONNECTIONS_SSL": False,
-    # Enabling ENFORCE_DB_ENCRYPTION_UI forces all database connections to be
-    # encrypted before being saved into superset metastore.
-    "ENFORCE_DB_ENCRYPTION_UI": False,
     # Allow users to export full CSV of table viz type.
     # This could cause the server to run out of memory or compute.
     "ALLOW_FULL_CSV_EXPORT": False,