diff --git a/doc/src/sgml/ref/pcp_watchdog_info.sgml b/doc/src/sgml/ref/pcp_watchdog_info.sgml index 3f3b9b5c..b7bb53be 100644 --- a/doc/src/sgml/ref/pcp_watchdog_info.sgml +++ b/doc/src/sgml/ref/pcp_watchdog_info.sgml @@ -90,7 +90,7 @@ Pgpool-II documentation 1. Total watchdog nodes in the cluster 2. Total watchdog nodes in the cluster with active membership - 3. Is VIP is up on current node? + 3. Is escalation was successful on current node? 4. Leader node name 5. Leader node host @@ -120,7 +120,7 @@ Pgpool-II documentation Nodes required for quorum: 2 Quorum state : QUORUM EXIST Alive Remote Nodes : 2 - VIP up on local node : NO + Local node escalation : NO Leader Node Name : Linux_host2.localdomain_9992 Leader Host Name : localhost diff --git a/src/tools/pcp/pcp_frontend_client.c b/src/tools/pcp/pcp_frontend_client.c index 45a15486..12ed13e5 100644 --- a/src/tools/pcp/pcp_frontend_client.c +++ b/src/tools/pcp/pcp_frontend_client.c @@ -781,7 +781,7 @@ output_watchdog_info_result(PCPResultInfo * pcpResInfo, bool verbose) printf("Alive Remote Nodes : %d\n", cluster->aliveNodeCount); printf("Nodes required for quorum: %d\n", cluster->nodesRequiredForQuorum); printf("Quorum state : %s\n", quorumStatus); - printf("VIP up on local node : %s\n", cluster->escalated ? "YES" : "NO"); + printf("Local node escalation : %s\n", cluster->escalated ? "YES" : "NO"); printf("Leader Node Name : %s\n", cluster->leaderNodeName); printf("Leader Host Name : %s\n\n", cluster->leaderHostName);