From b712442b026f69787d45298854c3f22b3f544821 Mon Sep 17 00:00:00 2001 From: noopur Date: Thu, 19 Dec 2024 19:13:32 +0000 Subject: [PATCH] Minor correction for dockerized workflow Signed-off-by: noopur --- tests/end_to_end/utils/federation_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/end_to_end/utils/federation_helper.py b/tests/end_to_end/utils/federation_helper.py index efbe92e3b2..698e580179 100644 --- a/tests/end_to_end/utils/federation_helper.py +++ b/tests/end_to_end/utils/federation_helper.py @@ -568,7 +568,7 @@ def run_command( docker_command = f"docker exec -i {container_id} sh -c " if run_in_background and bg_file: - docker_command += f"'{command} > {bg_file} &'" + docker_command += f"'{command} > {bg_file}' &" else: docker_command += f"'{command}'"