From 5965d4c63b2bf78566be806fed9c15b405778ecc Mon Sep 17 00:00:00 2001 From: Mayur Singal <39544459+ulixius9@users.noreply.github.com> Date: Mon, 4 Dec 2023 21:24:13 +0530 Subject: [PATCH] Minor: Fix airflow empty status (#14216) --- .../src/metadata/ingestion/source/pipeline/airflow/metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/src/metadata/ingestion/source/pipeline/airflow/metadata.py b/ingestion/src/metadata/ingestion/source/pipeline/airflow/metadata.py index f5a060e9cf1a..13f8d105a4b4 100644 --- a/ingestion/src/metadata/ingestion/source/pipeline/airflow/metadata.py +++ b/ingestion/src/metadata/ingestion/source/pipeline/airflow/metadata.py @@ -75,7 +75,7 @@ class OMTaskInstance(BaseModel): """ task_id: str - state: str + state: Optional[str] start_date: Optional[datetime] end_date: Optional[datetime]