feat: Adding FORCE_SSL as feature flag in config.py (#14934)

This commit is contained in:
AAfghahi
2021-06-02 14:51:33 -04:00
committed by GitHub
parent 405f95b6af
commit bf1358b665

View File

@@ -383,6 +383,9 @@ DEFAULT_FEATURE_FLAGS: Dict[str, bool] = {
# for report with type 'report' still send with email and slack message with
# screenshot and link
"ALERTS_ATTACH_REPORTS": True,
# Enabling FORCE_DATABASE_CONNECTIONS_SSL forces all database connections to be
# encrypted before being saved into superset metastore.
"FORCE_DATABASE_CONNECTIONS_SSL": False,
}
# Feature flags may also be set via 'SUPERSET_FEATURE_' prefixed environment vars.