From b2d0ab319e3115cc10258c172bbb382af00c8d7e Mon Sep 17 00:00:00 2001 From: ssiras826 Date: Thu, 4 Dec 2025 18:17:53 +0530 Subject: [PATCH] RDKBACCL-1300 : speedtest container not starting Reason for change : item value and its loop adjusted properly for arguments alignment in config.json Test Procedure : generate the bundle , check the config.json file Risks: None Signed-off-by: ssiras826 --- bundlegen/core/bundle_processor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bundlegen/core/bundle_processor.py b/bundlegen/core/bundle_processor.py index 22522c9..e5450f4 100644 --- a/bundlegen/core/bundle_processor.py +++ b/bundlegen/core/bundle_processor.py @@ -463,10 +463,11 @@ def _process_process(self): else: dobbyinitpath = '/usr/libexec/DobbyInit' args = self.oci_config['process']['args'] + new_args = [] for item in args: + item = item.replace('\\@', ' ') if ' ' in item: - item = item.replace('\\@', ' ') new_args.extend(shlex.split(item)) else: new_args.append(item)