diff --git a/RESOURCES/FEATURE_FLAGS.md b/RESOURCES/FEATURE_FLAGS.md index a8f4cdfa326fd..3374669870bce 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 123ff902c9993..e26baa9a4e05b 100644 --- a/superset/config.py +++ b/superset/config.py @@ -456,9 +456,6 @@ def _try_json_readsha(filepath: str, length: int) -> Optional[str]: "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,