File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
services/director-v2/src/simcore_service_director_v2/api/routes Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 8383from ..dependencies .database import get_repository
8484from ..dependencies .rabbitmq import rabbitmq_rpc_client
8585from ..dependencies .rut_client import get_rut_client
86- from .computations_tasks import analyze_pipeline
86+ from .computations_tasks import validate_pipeline
8787
8888_PIPELINE_ABORT_TIMEOUT_S : Final [timedelta ] = timedelta (seconds = 30 )
8989
@@ -453,7 +453,7 @@ async def get_computation(
453453 # check that project actually exists
454454 await project_repo .get_project (project_id )
455455
456- pipeline_dag , all_tasks , _filtered_tasks = await analyze_pipeline (
456+ pipeline_dag , all_tasks , _filtered_tasks = await validate_pipeline (
457457 project_id , comp_pipelines_repo , comp_tasks_repo
458458 )
459459
Original file line number Diff line number Diff line change 3535# HELPERS -------------------------------------------------------------------
3636
3737
38- async def analyze_pipeline (
38+ async def validate_pipeline (
3939 project_id : ProjectID ,
4040 comp_pipelines_repo : CompPipelinesRepository ,
4141 comp_tasks_repo : CompTasksRepository ,
@@ -82,7 +82,7 @@ async def get_all_tasks_log_files(
8282 Each log is only available when the corresponding task is done
8383 """
8484 # gets computation task ids
85- info = await analyze_pipeline (project_id , comp_pipelines_repo , comp_tasks_repo )
85+ info = await validate_pipeline (project_id , comp_pipelines_repo , comp_tasks_repo )
8686 iter_task_ids = (t .node_id for t in info .filtered_tasks )
8787
8888 tasks_logs_files : list [TaskLogFileGet ] = await logged_gather (
You can’t perform that action at this time.
0 commit comments