This is an automated email from the ASF dual-hosted git repository.
weilee pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 7ca89b31139 fix(task_sdk): add missing type column to
TIRuntimeCheckPayload (#46509)
7ca89b31139 is described below
commit 7ca89b311397e7c86f2e59eeb7c6cb7aa097ced9
Author: Wei Lee <[email protected]>
AuthorDate: Fri Feb 7 10:11:25 2025 +0800
fix(task_sdk): add missing type column to TIRuntimeCheckPayload (#46509)
---
airflow/api_fastapi/execution_api/datamodels/taskinstance.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/airflow/api_fastapi/execution_api/datamodels/taskinstance.py
b/airflow/api_fastapi/execution_api/datamodels/taskinstance.py
index 0c8e5eb1b6a..0522d4c2053 100644
--- a/airflow/api_fastapi/execution_api/datamodels/taskinstance.py
+++ b/airflow/api_fastapi/execution_api/datamodels/taskinstance.py
@@ -264,3 +264,4 @@ class TIRuntimeCheckPayload(StrictBaseModel):
inlets: list[AssetProfile] | None = None
outlets: list[AssetProfile] | None = None
+ type: str | None = None