eladkal commented on code in PR #33930:
URL: https://github.com/apache/airflow/pull/33930#discussion_r1310719005
##########
airflow/providers/google/cloud/operators/bigquery.py:
##########
@@ -1198,6 +1198,14 @@ def __init__(
impersonation_chain: str | Sequence[str] | None = None,
**kwargs,
) -> None:
+ if bigquery_conn_id:
+ warnings.warn(
+ "The bigquery_conn_id parameter has been deprecated. Use the
gcp_conn_id parameter instead.",
+ AirflowProviderDeprecationWarning,
+ stacklevel=2,
+ )
+ gcp_conn_id = bigquery_conn_id
+
Review Comment:
This operator is deprecated for almost 3 years.
I prefer to start a breaking change release and remove old deprecations
rather than start handling with fixing old operators BUT I also prefer to let
google folks decide on the timing for that
--
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]