Commit 23ad3faa authored by artix's avatar artix
Browse files

Cluster Manager: change text alert clusterManagerWaitForClusterJoin

parent 2593fb9c
...@@ -3437,11 +3437,11 @@ static void clusterManagerWaitForClusterJoin(void) { ...@@ -3437,11 +3437,11 @@ static void clusterManagerWaitForClusterJoin(void) {
if (parseClusterNodeAddress(nodeaddr, &node_ip, if (parseClusterNodeAddress(nodeaddr, &node_ip,
&node_port, &node_bus_port) && node_bus_port) { &node_port, &node_bus_port) && node_bus_port) {
clusterManagerLogErr(" - The port %d of node %s may " clusterManagerLogErr(" - The port %d of node %s may "
"be unreachable from:\n", "be unreachable by:\n",
node_bus_port, node_ip); node_bus_port, node_ip);
} else { } else {
clusterManagerLogErr(" - Node %s may be unreachable " clusterManagerLogErr(" - Node %s may be unreachable "
"from:\n", nodeaddr); "by:\n", nodeaddr);
} }
listIter li; listIter li;
listNode *ln; listNode *ln;
...@@ -3454,7 +3454,7 @@ static void clusterManagerWaitForClusterJoin(void) { ...@@ -3454,7 +3454,7 @@ static void clusterManagerWaitForClusterJoin(void) {
clusterManagerLogErr("Cluster bus ports must be reachable " clusterManagerLogErr("Cluster bus ports must be reachable "
"by every node.\nRemember that " "by every node.\nRemember that "
"cluster bus ports are different " "cluster bus ports are different "
"from standard instance port.\n"); "from standard instance ports.\n");
listEmpty(from); listEmpty(from);
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment