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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

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.