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 d25e4f2 commit e746f1cCopy full SHA for e746f1c
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,5 +68,5 @@ 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 = BooleanFlag("ENABLE_DBT", False)
72
ENABLE_AUTH_KEYPAIR = BooleanFlag("ENABLE_AUTH_KEYPAIR", False)
- ENABLE_DBT_POC = BooleanFlag("ENABLE_DBT_POC", False)
0 commit comments