Skip to content

Commit

Permalink
Fix typo in valkey-cli.c (valkey-io#979)
Browse files Browse the repository at this point in the history
Change from replicsa to replicas in valkey-cli.c

Signed-off-by: NAM UK KIM <[email protected]>
  • Loading branch information
Virusuki authored Sep 3, 2024
1 parent 981f977 commit f143ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/valkey-cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -4219,7 +4219,7 @@ static void clusterManagerOptimizeAntiAffinity(clusterManagerNodeArray *ipnodes,
if (perfect)
msg = "[OK] Perfect anti-affinity obtained!";
else if (score >= 10000)
msg = ("[WARNING] Some replicsa are in the same host as their primary");
msg = ("[WARNING] Some replicas are in the same host as their primary");
else
msg = ("[WARNING] Some replicas of the same primary are in the same host");
clusterManagerLog(log_level, "%s\n", msg);
Expand Down

0 comments on commit f143ffd

Please sign in to comment.