Vamsi-klu commented on PR #69747: URL: https://github.com/apache/airflow/pull/69747#issuecomment-4943676433
Tested this PR branch locally in the Airflow UI with Breeze. Scenario exercised: - Created a `databricks` connection named `pr_69747_databricks_extra_http_path` from the UI. - Used host `dbc-pr69747.cloud.databricks.com` and a dummy token only. - Put `http_path` only in Extra JSON: `sql/protocolv1/o/1234567890123456/0123-456789-pr69747`. - Triggered a scratch Dag that calls `DatabricksSqlHook(databricks_conn_id="pr_69747_databricks_extra_http_path").get_uri()`. - No real Databricks credentials or network call were required for this check. Result: - Dag run succeeded. - Task log shows the SQLAlchemy URI includes the encoded `http_path` from connection extra: ```text databricks://token:***@dbc-pr69747.cloud.databricks.com?http_path=sql%2Fprotocolv1%2Fo%2F1234567890123456%2F0123-456789-pr69747 ``` Screenshots are hosted on a dedicated assets-only branch in the fork. **Connection Extra JSON configured**  **Connection saved and filtered in the UI**  **Scratch Dag run succeeded**  **Task log showing `http_path` in the URI**  --- Drafted-by: Codex (GPT-5.5) (no human review before posting) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
