Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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