ashb commented on code in PR #55408:
URL: https://github.com/apache/airflow/pull/55408#discussion_r2333495574
##########
providers/google/src/airflow/providers/google/assets/bigquery.py:
##########
@@ -36,7 +36,7 @@ def sanitize_uri(uri: SplitResult) -> SplitResult:
def create_asset(*, project_id: str, dataset_id: str, table_id: str, extra:
dict | None = None) -> Asset:
- return Asset(uri=f"bigquery://{project_id}/{dataset_id}/{table_id}",
extra=extra)
+ return Asset(uri=f"bigquery://{project_id}/{dataset_id}/{table_id}",
event_extra_template=extra)
Review Comment:
We can't make this change likee this. Providers need to work with both 2.10
and 3.x, so this will need to be version aware.
--
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]