mirror of https://github.com/citusdata/citus.git
fix: typo runnnig -> running (#7686)
Very small PR, no changes to behaviour. Just a typo fix :-) Under `src/backend/distributed/sql/udfs/citus_finalize_upgrade_to_citus11/` the sql has a typo "runnnig", which will be displayed to the user if the `citus_check_cluster_node_health()` fails when calling `citus_finish_citus_upgrade();` Co-authored-by: eaydingol <60466783+eaydingol@users.noreply.github.com>pull/7718/head
parent
5bad6c6a1d
commit
f6959715dc
|
@ -96,7 +96,7 @@ END;
|
||||||
|
|
||||||
IF all_nodes_can_connect_to_each_other != True THEN
|
IF all_nodes_can_connect_to_each_other != True THEN
|
||||||
RAISE EXCEPTION 'There are unhealth primary nodes, you need to ensure all '
|
RAISE EXCEPTION 'There are unhealth primary nodes, you need to ensure all '
|
||||||
'nodes are up and runnnig. Also, make sure that all nodes can connect '
|
'nodes are up and running. Also, make sure that all nodes can connect '
|
||||||
'to each other. Use SELECT * FROM citus_check_cluster_node_health(); '
|
'to each other. Use SELECT * FROM citus_check_cluster_node_health(); '
|
||||||
'to check the cluster health';
|
'to check the cluster health';
|
||||||
ELSE
|
ELSE
|
||||||
|
|
|
@ -96,7 +96,7 @@ END;
|
||||||
|
|
||||||
IF all_nodes_can_connect_to_each_other != True THEN
|
IF all_nodes_can_connect_to_each_other != True THEN
|
||||||
RAISE EXCEPTION 'There are unhealth primary nodes, you need to ensure all '
|
RAISE EXCEPTION 'There are unhealth primary nodes, you need to ensure all '
|
||||||
'nodes are up and runnnig. Also, make sure that all nodes can connect '
|
'nodes are up and running. Also, make sure that all nodes can connect '
|
||||||
'to each other. Use SELECT * FROM citus_check_cluster_node_health(); '
|
'to each other. Use SELECT * FROM citus_check_cluster_node_health(); '
|
||||||
'to check the cluster health';
|
'to check the cluster health';
|
||||||
ELSE
|
ELSE
|
||||||
|
|
|
@ -96,7 +96,7 @@ END;
|
||||||
|
|
||||||
IF all_nodes_can_connect_to_each_other != True THEN
|
IF all_nodes_can_connect_to_each_other != True THEN
|
||||||
RAISE EXCEPTION 'There are unhealth primary nodes, you need to ensure all '
|
RAISE EXCEPTION 'There are unhealth primary nodes, you need to ensure all '
|
||||||
'nodes are up and runnnig. Also, make sure that all nodes can connect '
|
'nodes are up and running. Also, make sure that all nodes can connect '
|
||||||
'to each other. Use SELECT * FROM citus_check_cluster_node_health(); '
|
'to each other. Use SELECT * FROM citus_check_cluster_node_health(); '
|
||||||
'to check the cluster health';
|
'to check the cluster health';
|
||||||
ELSE
|
ELSE
|
||||||
|
|
|
@ -96,7 +96,7 @@ END;
|
||||||
|
|
||||||
IF all_nodes_can_connect_to_each_other != True THEN
|
IF all_nodes_can_connect_to_each_other != True THEN
|
||||||
RAISE EXCEPTION 'There are unhealth primary nodes, you need to ensure all '
|
RAISE EXCEPTION 'There are unhealth primary nodes, you need to ensure all '
|
||||||
'nodes are up and runnnig. Also, make sure that all nodes can connect '
|
'nodes are up and running. Also, make sure that all nodes can connect '
|
||||||
'to each other. Use SELECT * FROM citus_check_cluster_node_health(); '
|
'to each other. Use SELECT * FROM citus_check_cluster_node_health(); '
|
||||||
'to check the cluster health';
|
'to check the cluster health';
|
||||||
ELSE
|
ELSE
|
||||||
|
|
Loading…
Reference in New Issue