Skip to content

Commit

Permalink
Snowflake Provider - hide host from UI (#29208)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwreeves committed Jan 28, 2023
1 parent 6c47943 commit eff677c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/providers/snowflake/hooks/snowflake.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class SnowflakeHook(DbApiHook):
"""
A client to interact with Snowflake.
This hook requires the snowflake_conn_id connection. The snowflake host, login,
This hook requires the snowflake_conn_id connection. The snowflake account, login,
and, password field must be setup in the connection. Other inputs can be defined
in the connection or hook instantiation.
Expand Down Expand Up @@ -143,7 +143,7 @@ def get_ui_field_behaviour() -> dict[str, Any]:
import json

return {
"hidden_fields": ["port"],
"hidden_fields": ["port", "host"],
"relabeling": {},
"placeholders": {
"extra": json.dumps(
Expand Down

0 comments on commit eff677c

Please sign in to comment.