- rpm: build with --with-sbd-sync-default="true" only for sle_version >= 150400 (bsc#1180966) - rpm: build with --enable-legacy-links only for suse_version < 1600 - rpm: build with --enable-compat-2.0 only for suse_version < 1600 (jsc#PED-106, jsc#PED-294) - rpm: build with --with-concurrent-fencing-default=true only for sle_version >= 150400 - rpm: build with --with-resource-stickiness-default=1 only for sle_version >= 150400 - rpm: build with --with-nagios=true only for suse_version < 1600 (jsc#PED-3877, jsc#PED-4446) - agents: create symlink ocf:pacemaker:NodeUtilization only for suse_version < 1600 in favor of ocf💓NodeUtilization (bsc#1070347) - Update to version 2.1.6+20230524.6fdc9deea (Pacemaker-2.1.6): - scheduler: ensure earlier group member starts happen after later member stops - Update to version 2.1.5+20230502.802a72226 (Pacemaker-2.1.6-rc2): - rpm: avoid bare wildcards under shared directories in spec - scheduler: consider mandatory colocations before optional - Update to version 2.1.5+20230501.832463d94: - daemons: pacemakerd -S should wait for shutdown before returning (bsc#1210857) - Update to version 2.1.5+20230501.b049bbeea: - scheduler: deprecate support for Nagios resources (jsc#PED-3877, jsc#PED-4446) - scheduler: deprecate "moon" in date_spec elements in rules - daemons: Preserve transient attrs when possible - daemons: Sync remote connection info with new controllers. - daemons: Record the node hosting a remote connection resource. - daemons: Add node hosting connection resource to state XML. - daemons: Broadcast remote node state changes to all controllers - daemons: Add daemon uptime to execd XML replies. - Update to version 2.1.5+20230424.6127934e3: - fencer: fencing timeout sent to peer takes no delay into account (bsc#1210074) OBS-URL: https://build.opensuse.org/request/show/1093808 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=383
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.5+20230412.b2ca1c3b1/daemons/controld/controld_membership.c
|
|
===================================================================
|
|
--- pacemaker-2.1.5+20230412.b2ca1c3b1.orig/daemons/controld/controld_membership.c
|
|
+++ pacemaker-2.1.5+20230412.b2ca1c3b1/daemons/controld/controld_membership.c
|
|
@@ -421,7 +421,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.5+20230412.b2ca1c3b1/daemons/controld/controld_transition.c
|
|
===================================================================
|
|
--- pacemaker-2.1.5+20230412.b2ca1c3b1.orig/daemons/controld/controld_transition.c
|
|
+++ pacemaker-2.1.5+20230412.b2ca1c3b1/daemons/controld/controld_transition.c
|
|
@@ -182,7 +182,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.5+20230412.b2ca1c3b1/daemons/fenced/fenced_remote.c
|
|
===================================================================
|
|
--- pacemaker-2.1.5+20230412.b2ca1c3b1.orig/daemons/fenced/fenced_remote.c
|
|
+++ pacemaker-2.1.5+20230412.b2ca1c3b1/daemons/fenced/fenced_remote.c
|
|
@@ -687,7 +687,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);
|
|
|