Skip to content

Commit

Permalink
correct handling configs override
Browse files Browse the repository at this point in the history
  • Loading branch information
jafermarq committed Jul 16, 2024
1 parent ab7ca15 commit 4b3199a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/py/flwr/cli/run/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,11 @@ def _run_without_superexec(
f"{app_path}",
"--num-supernodes",
f"{num_supernodes}",
"--run-config",
f"{config_overrides}",
]

if config_overrides:
command.extend(["--run-config", f"{config_overrides}"])

# Run the simulation
subprocess.run(
command,
Expand Down

0 comments on commit 4b3199a

Please sign in to comment.