Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chongshenng committed Nov 21, 2024
1 parent 1143263 commit 83af49a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/py/flwr/simulation/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ def flwr_simulation() -> None:
args = parser.parse_args()

log(INFO, "Starting Flower Simulation")
certificates = try_obtain_root_certificates(args, args.superlink)
certificates = try_obtain_root_certificates(args, args.simulationio_api_address)

log(
DEBUG,
"Staring isolated `Simulation` connected to SuperLink DriverAPI at %s",
args.superlink,
args.simulationio_api_address,
)
run_simulation_process(
simulationio_api_address=args.superlink,
simulationio_api_address=args.simulationio_api_address,
log_queue=log_queue,
run_once=args.run_once,
flwr_dir_=args.flwr_dir,
Expand Down

0 comments on commit 83af49a

Please sign in to comment.