From 7c2481c1820c109d2fd7f657ff61b632a01d6585 Mon Sep 17 00:00:00 2001 From: SteBaum Date: Wed, 3 Jul 2024 13:29:36 +0200 Subject: [PATCH] fix: message in iterator for operations affecting stale compoenents --- tdp/core/deployment/deployment_iterator.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tdp/core/deployment/deployment_iterator.py b/tdp/core/deployment/deployment_iterator.py index 5f40661e..241bd018 100644 --- a/tdp/core/deployment/deployment_iterator.py +++ b/tdp/core/deployment/deployment_iterator.py @@ -188,8 +188,7 @@ def _process_operation_fn( # Log a warning if the operation affect a stale SCH which is not the first reconfigure operation (if any) if not can_update_stale: logger.warning( - f"can't update stale {entity_name} with {operation_rec.operation}\n" - + "first operation is {first_reconfigure_operation}" + f"can't update stale {entity_name} with {operation_rec.operation}, the first operation is {first_reconfigure_operation}" ) else: can_update_stale = False