adding new feature flag (#15238)

This commit is contained in:
AAfghahi 2021-06-22 11:06:54 -04:00 committed by GitHub
parent cef3dc0b02
commit 4d48f0426d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -383,9 +383,11 @@ 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 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,