We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a403453 commit 484ea17Copy full SHA for 484ea17
src/snowflake/cli/_plugins/dbt/commands.py
@@ -35,7 +35,7 @@
35
app = SnowTyperFactory(
36
name="dbt",
37
help="Manages dbt on Snowflake projects",
38
- is_hidden=FeatureFlag.ENABLE_DBT_POC.is_disabled,
+ is_hidden=FeatureFlag.ENABLE_DBT.is_disabled,
39
)
40
log = logging.getLogger(__name__)
41
src/snowflake/cli/api/feature_flags.py
@@ -68,4 +68,4 @@ class FeatureFlag(FeatureFlagMixin):
68
69
ENABLE_SNOWPARK_GLOB_SUPPORT = BooleanFlag("ENABLE_SNOWPARK_GLOB_SUPPORT", False)
70
ENABLE_SPCS_SERVICE_EVENTS = BooleanFlag("ENABLE_SPCS_SERVICE_EVENTS", False)
71
- ENABLE_DBT_POC = BooleanFlag("ENABLE_DBT_POC", False)
+ ENABLE_DBT = BooleanFlag("ENABLE_DBT", False)
0 commit comments