From e2a8a88d366c09bf675434446ba1dc7ddcb4b2dd Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Tue, 12 May 2026 20:39:39 -0700 Subject: [PATCH] docs: Update documentation link for ENABLE_SUPERSET_META_DB (#40076) Co-authored-by: Claude Code --- 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.