bac5bcc13a
- Update to version 2.1.2+20220126.16c1bab10: - controller: correctly match "node down" events - controller: improve meta-data warnings - scheduler: assert on memory allocation error - pacemakerd: improve messages for subdaemon handling - Update to version 2.1.2+20220126.57e783b4b: - libstonithd: avoid controld shutdown hanging - pacemakerd: have signal-handler take care of lost processes - scheduler: avoid memory leak when displaying clones - Rebase: * bug-806256_pacemaker-log-level-notice.patch - Update to version 2.1.2+20220120.3f0398825: - scheduler: implement utilization for bundles - fencer: reset op result before grabbing new one (rh#1470834) - schemas: update fence-event API schema for recent change (rh#1470834) - fencing: display exit reasons with failed fencing events (rh#1470834) - fencing: return exit reason with fencing history (rh#1470834) - fencer: track full result in fencing history (rh#1470834) - Update to version 2.1.2+20220119.2c937a4c0: - ipc_client: use libqb async API for connect - pacemakerd: keep tracking pacemakerd for liveness - pacemakerd: tweak systemd unit respawn settings - Update to version 2.1.2+20220119.eec504705: - libcrmservice: improve exit reason for timeouts (rh#1470834) - fencing: improve exit reason for fencing timeouts (rh#1470834) - controller: improve exit reason for internal timeouts (rh#1470834) OBS-URL: https://build.opensuse.org/request/show/952937 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=356
46 lines
2.3 KiB
Diff
46 lines
2.3 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.2+20220126.57e783b4b/daemons/controld/controld_membership.c
|
|
===================================================================
|
|
--- pacemaker-2.1.2+20220126.57e783b4b.orig/daemons/controld/controld_membership.c
|
|
+++ pacemaker-2.1.2+20220126.57e783b4b/daemons/controld/controld_membership.c
|
|
@@ -410,7 +410,7 @@ crm_update_quorum(gboolean quorum, gbool
|
|
crm_xml_add(update, XML_ATTR_DC_UUID, fsa_our_uuid);
|
|
|
|
fsa_cib_update(XML_TAG_CIB, update, call_options, call_id, NULL);
|
|
- crm_debug("Updating quorum status to %s (call=%d)",
|
|
+ crm_notice("Updating quorum status to %s (call=%d)",
|
|
pcmk__btoa(quorum), call_id);
|
|
fsa_register_cib_callback(call_id, FALSE, NULL, cib_quorum_update_complete);
|
|
free_xml(update);
|
|
Index: pacemaker-2.1.2+20220126.57e783b4b/daemons/controld/controld_transition.c
|
|
===================================================================
|
|
--- pacemaker-2.1.2+20220126.57e783b4b.orig/daemons/controld/controld_transition.c
|
|
+++ pacemaker-2.1.2+20220126.57e783b4b/daemons/controld/controld_transition.c
|
|
@@ -182,7 +182,7 @@ do_te_invoke(long long action,
|
|
transition_graph = pcmk__unpack_graph(graph_data, graph_input);
|
|
CRM_CHECK(transition_graph != NULL,
|
|
transition_graph = create_blank_graph(); return);
|
|
- crm_info("Processing graph %d (ref=%s) derived from %s", transition_graph->id, ref,
|
|
+ crm_notice("Processing graph %d (ref=%s) derived from %s", transition_graph->id, ref,
|
|
graph_input);
|
|
|
|
te_reset_job_counts();
|
|
Index: pacemaker-2.1.2+20220126.57e783b4b/daemons/fenced/fenced_remote.c
|
|
===================================================================
|
|
--- pacemaker-2.1.2+20220126.57e783b4b.orig/daemons/fenced/fenced_remote.c
|
|
+++ pacemaker-2.1.2+20220126.57e783b4b/daemons/fenced/fenced_remote.c
|
|
@@ -670,7 +670,7 @@ finalize_timed_out_op(remote_fencing_op_
|
|
{
|
|
op->op_timer_total = 0;
|
|
|
|
- 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);
|
|
|