Skip to content

Commit

Permalink
fix incorrect log fmt string
Browse files Browse the repository at this point in the history
  • Loading branch information
ankona committed Aug 1, 2023
1 parent 8d0b612 commit 0aea207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smartsim/_core/control/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def _launch_orchestrator(self, orchestrator: Orchestrator) -> None:
create_cluster(orchestrator.hosts, orchestrator.ports)
check_cluster_status(orchestrator.hosts, orchestrator.ports)
num_shards = orchestrator.num_shards
logger.info("Database cluster created with {} shards", num_shards)
logger.info(f"Database cluster created with {num_shards} shards")
cluster_created = True
except SSInternalError:
if num_trials > 0:
Expand Down

0 comments on commit 0aea207

Please sign in to comment.