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.