Fix typo in valkey-cli.c (#979)

Change from replicsa to replicas in valkey-cli.c

Signed-off-by: NAM UK KIM <namuk2004@naver.com>
This commit is contained in:
NAM UK KIM 2024-09-03 15:58:09 +09:00 committed by GitHub
parent 981f977abf
commit f143ffd2a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);