mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-25 14:38:29 +00:00
ISSUE-14742: Adjusting metadata.py to filter by enum value (#14884)
This commit is contained in:
parent
c1d62186df
commit
37d967013b
@ -192,7 +192,7 @@ class AirflowSource(PipelineServiceSource):
|
||||
TaskInstance.dag_id == dag_id,
|
||||
TaskInstance.run_id == run_id,
|
||||
# updating old runs flag deleted tasks as `removed`
|
||||
TaskInstance.state != AirflowTaskStatus.REMOVED,
|
||||
TaskInstance.state != AirflowTaskStatus.REMOVED.value,
|
||||
)
|
||||
.all()
|
||||
)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user