f282465d02
- Update to version 2.0.0+20180726.3d81c89b8: - Shutdown corosync after a fatal error - tools: ipmiservicelogd FTBFS on ppc64le - tools: notifyServicelogEvent FTBFS on ppc64le - tools: detect CIB directory correctly - tools: avoid memory leak when crm_resource checks resource - controller: avoid any chance of use-of-NULL when doing LRM op - resources: controld doesn't need to check for corosync 1 plugin - resources: use correct variable name in Stateful - cts-scheduler: restore ability to pass arguments to single test run - resources: use ocf_is_true in SysInfo - spec: drop superfluous dependency of -libs-devel on -cts - tools: update URL in crm_simulate help - crm_mon: rhbz#1461964 - add fence history features - Update to version 2.0.0+20180706.8cf3fe749 (Pacemaker-2.0.0): - tools: Multiple -V increase debug level (#1526) - scheduler: clarify multiple-anonymous-instances message - scheduler: avoid use-after-free when on-fail=block - controller: add node name to meta-data call environment - controller: filter certain synthesized failures from CIB - controller: filter certain action timeouts from CIB - controller: don't record pending notifies in CIB - executor: cancel recurring monitors if fence device registration is lost - controller: avoid memory leak if start-up fails - XML: schemas.c: fix possible memleak + less magic with numeric constants - tools: stonith_admin -h/-H options are queries - libstonithd: avoid memory leak when getting meta-data - XML: resources-3.1.rng: relaxed schema after tight upgrade enforcement - XML: schemas.c: take severities of XSLT messages into account properly OBS-URL: https://build.opensuse.org/request/show/625813 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=307
46 lines
2.2 KiB
Diff
46 lines
2.2 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-1.1.18+20180430.c0d7ba798/daemons/controld/controld_membership.c
|
|
===================================================================
|
|
--- pacemaker-1.1.18+20180430.c0d7ba798.orig/daemons/controld/controld_membership.c
|
|
+++ pacemaker-1.1.18+20180430.c0d7ba798/daemons/controld/controld_membership.c
|
|
@@ -414,7 +414,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)", quorum ? "true" : "false", call_id);
|
|
+ crm_notice("Updating quorum status to %s (call=%d)", quorum ? "true" : "false", call_id);
|
|
fsa_register_cib_callback(call_id, FALSE, NULL, cib_quorum_update_complete);
|
|
free_xml(update);
|
|
|
|
Index: pacemaker-1.1.18+20180430.c0d7ba798/daemons/controld/controld_transition.c
|
|
===================================================================
|
|
--- pacemaker-1.1.18+20180430.c0d7ba798.orig/daemons/controld/controld_transition.c
|
|
+++ pacemaker-1.1.18+20180430.c0d7ba798/daemons/controld/controld_transition.c
|
|
@@ -187,7 +187,7 @@ do_te_invoke(long long action,
|
|
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-1.1.18+20180430.c0d7ba798/daemons/fenced/fenced_remote.c
|
|
===================================================================
|
|
--- pacemaker-1.1.18+20180430.c0d7ba798.orig/daemons/fenced/fenced_remote.c
|
|
+++ pacemaker-1.1.18+20180430.c0d7ba798/daemons/fenced/fenced_remote.c
|
|
@@ -578,7 +578,7 @@ remote_op_timeout(gpointer userdata)
|
|
return FALSE;
|
|
}
|
|
|
|
- crm_debug("Action %s (%s) for %s (%s) timed out",
|
|
+ crm_notice("Action %s (%s) for %s (%s) timed out",
|
|
op->action, op->id, op->target, op->client_name);
|
|
|
|
if (op->phase == st_phase_on) {
|