6e3bbfd704
- remote: report timestamps for remote connection resource operations - pengine: allow remote-nodes to be placed in maintenance mode - xml: Prevent assert errors in crm_element_value() on applying a patch without version information (bsc#900296) - pengine: prevent disabling rsc discovery per node in certain situations - crm_resource: avoid deletion of lrm cache on node with resource discovery disabled. - pengine: per-node control over resource discovery - mainloop: fix potential segfault for fd = 0 - ping: Correct metadata for attempts parameter (bsc#899324) - ping: Pass extra options to fping (bsc#899324) - ping: Remove incorrectly advertised migrate_to|migrate_from (bsc#899324) - ping: Add use_fping parameter (bsc#899324) - ping: Correctly advertise multiplier default (bsc#899324) - pengine: resource discovery mode for location constraints - cib: Ensure upgrade operations from a non-DC get an acknowledgement - lrmd: cancel pending async connection during disconnect - systemd: Ensure we don't call dbus_message_unref() with NULL - systemd: Perform monitor operations without blocking - dbus: Notice when dbus connections get disabled - pengine: allow baremetal remote-nodes to recover without requiring fencing when cluster-node fails - crmd: do not remove connection resources during re-probe - pengine: only fence baremetal remote when connection can fails or can not be recovered - ipc: properly allocate server enforced buffer size on client - remote: advertise more reasonable timeout periods for remote-nodes connections - crmd: properly update job limit for baremetal remote-nodes - crmd: Remote-node throttle jobs count towards cluster-node hosting conneciton rsc - crmd: Ensure throttle_mode() does something on Linux - systemd: Perform actions asynchronously - crm_attribute: Correctly update config options when -o crm_config is specified - crmd: Fixes crash when remote connection migration fails OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=164
59 lines
2.7 KiB
Diff
59 lines
2.7 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
|
|
@@ -182,7 +182,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);
|
|
erase_status_tag(node->uname, XML_CIB_TAG_LRM, cib_scope_local);
|
|
erase_status_tag(node->uname, XML_TAG_TRANSIENT_NODEATTRS, cib_scope_local);
|
|
Index: pacemaker/crmd/membership.c
|
|
===================================================================
|
|
--- pacemaker.orig/crmd/membership.c
|
|
+++ pacemaker/crmd/membership.c
|
|
@@ -312,7 +312,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
|
|
@@ -345,7 +345,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;
|
|
|