From c1e6807ac3413576664d2dfe437cd3547f705e80 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Wed, 23 Jul 2025 13:01:37 -0300 Subject: [PATCH] SIENTIAPDE-1171 fix: update workflow_type in minimal_retrain function for consistency - Changed workflow_type from "retrain" to "minimal_retrain" in the minimal_retrain function to align with the new schedule configuration. --- orchestrator/utils/orchestrator_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestrator/utils/orchestrator_functions.py b/orchestrator/utils/orchestrator_functions.py index 6fb3810..7b6289f 100644 --- a/orchestrator/utils/orchestrator_functions.py +++ b/orchestrator/utils/orchestrator_functions.py @@ -16,7 +16,7 @@ def common_config(config: dict[str, Any]): def minimal_retrain(config: dict[str, Any]): return { **common_config(config), - "workflow_type": "retrain", + "workflow_type": "minimal_retrain", "schedule_name": config['schedule_name'], "query": config['query'], "schema": "sientia_data",