b3fe1fb47a
* bug-806256_pacemaker-log-level-notice.patch * pacemaker-NodeUtilization-RA.patch * pacemaker-colocated-utilization.patch - crmd: All peers need to track node shutdown requests (bsc#917625) - crmd: Cached copies of transient attributes cease to be valid once a node leaves the membership (bsc#917625) - crmd: Wait for all pending operations to complete before poking the policy engine - lrmd: preserve exit reason string when isolation wrappers are in use - docker-wrapper: properly separate docker and resource specific attributes - docker-wrapper: set authkey file permissions and properly set container 'node name' during start - systemd: Trick systemd into not stopping our services before us during shutdown - mcp: Allow a configurable delay when debugging shutdown issues - systemd: Kindly ask dbus NOT to kill the process if the dbus connection fails - systemd: Tell systemd not to take DBus down from underneath us - cib: Correctly set up signal handlers - PE: Do not record duplicate copies of the failed actions - lrmd: enable ipc proxy for docker-wrapper privileged mode - lrmd: properly handle poke requests in lrmd client when using ipc - spec: add docker-wrapper directory to spec file - pengine: disable migrations for resources with isolation containers - pengine: disable reloading of resources within isolated container wrappers - pengine: ability to launch resources in isolated containers - extra: docker container tech wrapper script for pcmk remote - tools: crm_mon prints Stopped clones only if --inactive was specified - tools: display node names more consistently in crm_mon output - tools: Improve crm_mon output with certain option combinations - tools: make crm_mon last updated header consistent across formats - remote: pcmk remote client tool for use with container wrapper script - crmd: Reset stonith failcount to recover transitioner when the node rejoins (bsc#921102) - systemd: fix crash caused when canceling in-flight operation OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=193
59 lines
2.6 KiB
Diff
59 lines
2.6 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/crmd/callbacks.c
|
|
===================================================================
|
|
--- pacemaker.orig/crmd/callbacks.c
|
|
+++ pacemaker/crmd/callbacks.c
|
|
@@ -204,7 +204,7 @@ peer_update_callback(enum crm_status_typ
|
|
const char *task = crm_element_value(down->xml, XML_LRM_ATTR_TASK);
|
|
|
|
if (alive && safe_str_eq(task, CRM_OP_FENCE)) {
|
|
- crm_info("Node return implies stonith of %s (action %d) completed", node->uname,
|
|
+ crm_notice("Node return implies stonith of %s (action %d) completed", node->uname,
|
|
down->id);
|
|
|
|
st_fail_count_reset(node->uname);
|
|
Index: pacemaker/crmd/membership.c
|
|
===================================================================
|
|
--- pacemaker.orig/crmd/membership.c
|
|
+++ pacemaker/crmd/membership.c
|
|
@@ -430,7 +430,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/crmd/tengine.c
|
|
===================================================================
|
|
--- pacemaker.orig/crmd/tengine.c
|
|
+++ pacemaker/crmd/tengine.c
|
|
@@ -204,7 +204,7 @@ do_te_invoke(long long action,
|
|
destroy_graph(transition_graph);
|
|
transition_graph = 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/fencing/remote.c
|
|
===================================================================
|
|
--- pacemaker.orig/fencing/remote.c
|
|
+++ pacemaker/fencing/remote.c
|
|
@@ -374,7 +374,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);
|
|
op->state = st_failed;
|
|
|