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 4bf8afa commit c7edd83Copy full SHA for c7edd83
src/snowflake/cli/_plugins/dbt/commands.py
@@ -24,13 +24,14 @@
24
from snowflake.cli.api.commands.decorators import global_options_with_connection
25
from snowflake.cli.api.commands.flags import identifier_argument
26
from snowflake.cli.api.commands.snow_typer import SnowTyperFactory
27
+from snowflake.cli.api.feature_flags import FeatureFlag
28
from snowflake.cli.api.identifiers import FQN
29
from snowflake.cli.api.output.types import CommandResult, QueryResult
30
31
app = SnowTyperFactory(
32
name="dbt",
33
help="Manages dbt on Snowflake projects",
- is_hidden=lambda: True,
34
+ is_hidden=FeatureFlag.ENABLE_DBT_POC.is_disabled,
35
)
36
log = logging.getLogger(__name__)
37
0 commit comments