mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-15 19:03:43 +00:00
fix(ingest/airflow): make inlets work again (#8631)
This commit is contained in:
parent
ddcd5109dc
commit
9eb432cda0
@ -107,7 +107,7 @@ def get_inlets_from_task(task: BaseOperator, context: Any) -> Iterable[Any]:
|
|||||||
]
|
]
|
||||||
|
|
||||||
for inlet in task_inlets:
|
for inlet in task_inlets:
|
||||||
if isinstance(inlet, str):
|
if not isinstance(inlet, str):
|
||||||
inlets.append(inlet)
|
inlets.append(inlet)
|
||||||
|
|
||||||
return inlets
|
return inlets
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user