Skip to content

Commit 6584ec9

Browse files
chore: [SNOW-1890085] rename feature flag
1 parent 7640d9a commit 6584ec9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/snowflake/cli/_plugins/dbt/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
app = SnowTyperFactory(
3636
name="dbt",
3737
help="Manages dbt on Snowflake projects",
38-
is_hidden=FeatureFlag.ENABLE_DBT_POC.is_disabled,
38+
is_hidden=FeatureFlag.ENABLE_DBT.is_disabled,
3939
)
4040
log = logging.getLogger(__name__)
4141

src/snowflake/cli/api/feature_flags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ class FeatureFlag(FeatureFlagMixin):
6868
)
6969
ENABLE_SNOWPARK_GLOB_SUPPORT = BooleanFlag("ENABLE_SNOWPARK_GLOB_SUPPORT", False)
7070
ENABLE_SPCS_SERVICE_EVENTS = BooleanFlag("ENABLE_SPCS_SERVICE_EVENTS", False)
71-
ENABLE_DBT_POC = BooleanFlag("ENABLE_DBT_POC", False)
71+
ENABLE_DBT = BooleanFlag("ENABLE_DBT", False)

0 commit comments

Comments
 (0)