Skip to content

Commit

Permalink
fix(framework) Fix parsing executor_config if present (#4125)
Browse files Browse the repository at this point in the history
  • Loading branch information
chongshenng committed Sep 2, 2024
1 parent 9bbfe9c commit 24abe65
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/py/flwr/superexec/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ def run_superexec() -> None:
address=address,
executor=_load_executor(args),
certificates=certificates,
config=parse_config_args([args.executor_config]),
config=parse_config_args(
[args.executor_config] if args.executor_config else args.executor_config
),
)

grpc_servers = [superexec_server]
Expand Down

0 comments on commit 24abe65

Please sign in to comment.