Skip to content

Commit c7edd83

Browse files
refactor: [SNOW-1890085] hide dbt app behind feature flag
1 parent 4bf8afa commit c7edd83

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@
2424
from snowflake.cli.api.commands.decorators import global_options_with_connection
2525
from snowflake.cli.api.commands.flags import identifier_argument
2626
from snowflake.cli.api.commands.snow_typer import SnowTyperFactory
27+
from snowflake.cli.api.feature_flags import FeatureFlag
2728
from snowflake.cli.api.identifiers import FQN
2829
from snowflake.cli.api.output.types import CommandResult, QueryResult
2930

3031
app = SnowTyperFactory(
3132
name="dbt",
3233
help="Manages dbt on Snowflake projects",
33-
is_hidden=lambda: True,
34+
is_hidden=FeatureFlag.ENABLE_DBT_POC.is_disabled,
3435
)
3536
log = logging.getLogger(__name__)
3637

0 commit comments

Comments
 (0)