This is an automated email from the ASF dual-hosted git repository.
rusackas 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 e2a8a88d366 docs: Update documentation link for
ENABLE_SUPERSET_META_DB (#40076)
e2a8a88d366 is described below
commit e2a8a88d366c09bf675434446ba1dc7ddcb4b2dd
Author: Evan Rusackas <[email protected]>
AuthorDate: Tue May 12 20:39:39 2026 -0700
docs: Update documentation link for ENABLE_SUPERSET_META_DB (#40076)
Co-authored-by: Claude Code <[email protected]>
---
docs/static/feature-flags.json | 2 +-
superset/config.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/static/feature-flags.json b/docs/static/feature-flags.json
index 0da6171b46f..8f7623e471d 100644
--- a/docs/static/feature-flags.json
+++ b/docs/static/feature-flags.json
@@ -174,7 +174,7 @@
"default": false,
"lifecycle": "testing",
"description": "Allows users to add a superset:// DB that can query
across databases. Experimental with potential security/performance risks. See
SUPERSET_META_DB_LIMIT.",
- "docs":
"https://superset.apache.org/docs/configuration/databases/#querying-across-databases"
+ "docs":
"https://superset.apache.org/user-docs/databases/supported/superset-meta-database"
},
{
"name": "ESTIMATE_QUERY_COST",
diff --git a/superset/config.py b/superset/config.py
index 30de5fa4f34..ae63d828c83 100644
--- a/superset/config.py
+++ b/superset/config.py
@@ -643,7 +643,7 @@ DEFAULT_FEATURE_FLAGS: dict[str, bool] = {
# Experimental with potential security/performance risks.
# See SUPERSET_META_DB_LIMIT.
# @lifecycle: testing
- # @docs:
https://superset.apache.org/docs/configuration/databases/#querying-across-databases
+ # @docs:
https://superset.apache.org/user-docs/databases/supported/superset-meta-database
"ENABLE_SUPERSET_META_DB": False,
# Enable query cost estimation. Supported in Presto, Postgres, and
BigQuery.
# Requires `cost_estimate_enabled: true` in database `extra` attribute.