eladkal commented on code in PR #29166:
URL: https://github.com/apache/airflow/pull/29166#discussion_r1094081769
##########
airflow/providers/dbt/cloud/hooks/dbt.py:
##########
@@ -181,33 +181,46 @@ def __init__(self, dbt_cloud_conn_id: str =
default_conn_name, *args, **kwargs)
super().__init__(auth_type=TokenAuth)
self.dbt_cloud_conn_id = dbt_cloud_conn_id
+ @staticmethod
+ def _get_tenant_domain(conn: Connection) -> str:
+ if conn.schema:
+ warnings.warn(
Review Comment:
You will need to update version in provider.yaml to 3.0.0 and also update
provider changelog with details of the breaking change (check Amazon provider
change log for example)
--
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]