48db58056e
- Update to version 2.1.6+20231205.0f6fbd59f: - scheduler: log reason for recheck time updates - scheduler: update recheck time for node-pending-timeout - Update to version 2.1.6+20231204.e1a1bd808: - tools: Fix a regression in tool XML output. (clbz#5529) - Update to version 2.1.6+20231122.7534cc50a (Pacemaker-2.1.7-rc2): - rpm: require minimum libxml2 version of 2.6.0 - libcrmcommon: Write crm_verify detailed messages to XML - libcrmcommon: Use const for xmlCtxtGetLastError() (CLBZ#5530) - libcrmcommon: Drop deprecated libxml2 symbols (CLBZ#5530) - sysconfig: Use CRM_DAEMON_USER and CRM_DAEMON_GROUP - sysconfig: Fix defaults for dh_min_bits/dh_max_bits - sysconfig: Document PCMK_stderr - pacemakerd: Mark PCMK_shutdown_delay as deprecated - sysconfig: Document PCMK_cluster_type - sysconfig: Document PCMK_remote_pid1 - sysconfig: Document PCMK_node_action_limit - sysconfig: Mark PCMK_cib_timeout as deprecated - controld/schedullerd: Change the default value of node-pending-timeout to 0. - controld: Adding default value for node-pending-timeout. - crm_resource: make --wait wait for pending actions in CIB - Update to version 2.1.6+20231031.d0ef74d64 (Pacemaker-2.1.7-rc1): - attrd: revert faulty T138 fix - controller: bail if CIB modify fails within transaction - scheduler: don't show pending nodes as having "<3.15.1" feature set - Update to version 2.1.6+20231030.66cc0f083: OBS-URL: https://build.opensuse.org/request/show/1131354 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=385
46 lines
2.4 KiB
Diff
46 lines
2.4 KiB
Diff
commit b802c689cdad03a185c5c6689741e2a4db8d5924
|
|
Author: Gao,Yan <ygao@suse.com>
|
|
Date: Thu Mar 14 09:41:53 2013 +0800
|
|
|
|
Log: Change some messages to notice level (bnc#806256)
|
|
|
|
Index: pacemaker-2.1.6+20230821.d00694366/daemons/controld/controld_membership.c
|
|
===================================================================
|
|
--- pacemaker-2.1.6+20230821.d00694366.orig/daemons/controld/controld_membership.c
|
|
+++ pacemaker-2.1.6+20230821.d00694366/daemons/controld/controld_membership.c
|
|
@@ -435,7 +435,7 @@ crm_update_quorum(gboolean quorum, gbool
|
|
crm_xml_add_int(update, XML_ATTR_HAVE_QUORUM, quorum);
|
|
crm_xml_add(update, XML_ATTR_DC_UUID, controld_globals.our_uuid);
|
|
|
|
- crm_debug("Updating quorum status to %s", pcmk__btoa(quorum));
|
|
+ crm_notice("Updating quorum status to %s", pcmk__btoa(quorum));
|
|
controld_update_cib(XML_TAG_CIB, update, cib_scope_local,
|
|
cib_quorum_update_complete);
|
|
free_xml(update);
|
|
Index: pacemaker-2.1.6+20230821.d00694366/daemons/controld/controld_transition.c
|
|
===================================================================
|
|
--- pacemaker-2.1.6+20230821.d00694366.orig/daemons/controld/controld_transition.c
|
|
+++ pacemaker-2.1.6+20230821.d00694366/daemons/controld/controld_transition.c
|
|
@@ -171,7 +171,7 @@ do_te_invoke(long long action,
|
|
CRM_CHECK(controld_globals.transition_graph != NULL,
|
|
controld_globals.transition_graph = create_blank_graph();
|
|
return);
|
|
- crm_info("Processing graph %d (ref=%s) derived from %s",
|
|
+ crm_notice("Processing graph %d (ref=%s) derived from %s",
|
|
controld_globals.transition_graph->id, ref, graph_input);
|
|
|
|
te_reset_job_counts();
|
|
Index: pacemaker-2.1.6+20230821.d00694366/daemons/fenced/fenced_remote.c
|
|
===================================================================
|
|
--- pacemaker-2.1.6+20230821.d00694366.orig/daemons/fenced/fenced_remote.c
|
|
+++ pacemaker-2.1.6+20230821.d00694366/daemons/fenced/fenced_remote.c
|
|
@@ -695,7 +695,7 @@ remote_op_timeout_one(gpointer userdata)
|
|
static void
|
|
finalize_timed_out_op(remote_fencing_op_t *op, const char *reason)
|
|
{
|
|
- crm_debug("Action '%s' targeting %s for client %s timed out "
|
|
+ crm_notice("Action '%s' targeting %s for client %s timed out "
|
|
CRM_XS " id=%.8s",
|
|
op->action, op->target, op->client_name, op->id);
|
|
|