mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-01 21:57:55 +00:00
Airbyte Minor Fix (#5758)
This commit is contained in:
parent
df704fb566
commit
5066b1e740
@ -156,7 +156,7 @@ class AirbyteSource(Source[CreatePipelineRequest]):
|
|||||||
Method to get task & pipeline status
|
Method to get task & pipeline status
|
||||||
"""
|
"""
|
||||||
for job in self.client.list_jobs(connection.get("connectionId")):
|
for job in self.client.list_jobs(connection.get("connectionId")):
|
||||||
if not job or job.get("attempts"):
|
if not job or not job.get("attempts"):
|
||||||
continue
|
continue
|
||||||
for attempt in job["attempts"]:
|
for attempt in job["attempts"]:
|
||||||
task_status = [
|
task_status = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user