fix: Resolve for loop break issue
This commit is contained in:
parent
dc38ff3838
commit
30be0df314
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ async def run_tasks(
|
||||||
).scalar_one_or_none()
|
).scalar_one_or_none()
|
||||||
if data_point:
|
if data_point:
|
||||||
if data_point.pipeline_status.get(pipeline_name) == "Completed":
|
if data_point.pipeline_status.get(pipeline_name) == "Completed":
|
||||||
break
|
continue
|
||||||
|
|
||||||
try:
|
try:
|
||||||
async for result in run_tasks_with_telemetry(
|
async for result in run_tasks_with_telemetry(
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue