From 381b585c7ad21ff88fc3bfcf8a2ba1bd51586ef4 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Thu, 18 Dec 2025 11:34:31 -0300 Subject: [PATCH] SIENTIAPDE-1445 Refactor gather_read_tags function to remove logger parameter and associated logging statements, streamlining the function for improved clarity and focus on processing pipelines. --- orchestrator/utils/orchestrator_functions.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/orchestrator/utils/orchestrator_functions.py b/orchestrator/utils/orchestrator_functions.py index 50d76a7..f2d39b8 100644 --- a/orchestrator/utils/orchestrator_functions.py +++ b/orchestrator/utils/orchestrator_functions.py @@ -386,7 +386,7 @@ def predictions_batch(config: dict[str, Any]): } -def gather_read_tags(pipelines: list[dict[str, Any]], logger) -> dict[str, Any]: +def gather_read_tags(pipelines: list[dict[str, Any]]) -> dict[str, Any]: """ Gather all read tags from input pipelines. @@ -405,8 +405,6 @@ def gather_read_tags(pipelines: list[dict[str, Any]], logger) -> dict[str, Any]: # Get all read tags from pipelines for pipeline in pipelines: - logger.info( - f'Processing pipeline: {pipeline["workflow_type"]}: {pipeline.get("read_tags", [])}') if pipeline['workflow_type'] != 'scouter': continue