From 89fbf1edf4891c874416de79195d155b83fc1b5a Mon Sep 17 00:00:00 2001 From: Chong Shen Ng Date: Tue, 23 Jul 2024 22:07:34 +0100 Subject: [PATCH] Switch to subprocess.Popen --- src/py/flwr/superexec/deployment.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/py/flwr/superexec/deployment.py b/src/py/flwr/superexec/deployment.py index bd27d6b2101..fd09b512a52 100644 --- a/src/py/flwr/superexec/deployment.py +++ b/src/py/flwr/superexec/deployment.py @@ -168,8 +168,6 @@ def start_run( # Execute the command proc = subprocess.Popen( # pylint: disable=consider-using-with command, - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, text=True, ) log(INFO, "Started run %s", str(run_id))