Skip to content

Commit

Permalink
refactor(framework) Launch flwr-serverapp with subproces.popen (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jafermarq authored Oct 31, 2024
1 parent 54c635b commit 9df2adf
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/py/flwr/server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,11 +397,9 @@ def _flwr_serverapp_scheduler(
else:
command.append("--insecure")

subprocess.run(
subprocess.Popen( # pylint: disable=consider-using-with
command,
stdout=None,
stderr=None,
check=True,
text=True,
)


Expand Down

0 comments on commit 9df2adf

Please sign in to comment.