diff --git a/dbt/adapters/databricks/connections.py b/dbt/adapters/databricks/connections.py index 46e2dfbd9..233bdab4d 100644 --- a/dbt/adapters/databricks/connections.py +++ b/dbt/adapters/databricks/connections.py @@ -1124,10 +1124,12 @@ def _get_http_path(node: Optional[ResultNode], creds: DatabricksCredentials) -> # If none is specified return the default path from creds. compute_name = _get_compute_name(node) if not node or not compute_name: + logger.debug("Using default compute resource.") return creds.http_path http_path = None if creds.compute: + logger.debug(f"Using compute resource {compute_name}.") http_path = creds.compute.get(compute_name, {}).get("http_path", None) if not http_path: