This is an automated email from the ASF dual-hosted git repository.
yongjiezhao 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 80d66dd chore(FF): adding generic X axis Feature Flag (default:
False) (#18801)
80d66dd is described below
commit 80d66ddf5b81a70a81cde2dc588a5950332f6805
Author: Evan Rusackas <[email protected]>
AuthorDate: Thu Feb 17 20:34:39 2022 -0700
chore(FF): adding generic X axis Feature Flag (default: False) (#18801)
---
superset/config.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/superset/config.py b/superset/config.py
index 09ef4e7..889cdbe 100644
--- a/superset/config.py
+++ b/superset/config.py
@@ -435,6 +435,7 @@ DEFAULT_FEATURE_FLAGS: Dict[str, bool] = {
# This could cause the server to run out of memory or compute.
"ALLOW_FULL_CSV_EXPORT": False,
"UX_BETA": False,
+ "GENERIC_CHART_AXES": False,
}
# Feature flags may also be set via 'SUPERSET_FEATURE_' prefixed environment
vars.