- libraries: Update version numbers in so names - Update to version 3.0.0+20250108.d8340737c4 (Pacemaker-3.0.0): - Build: raise minimum GnuTLS dependency to 3.4.6 - Update to version 2.1.9+20241223.2587987be9 (Pacemaker-3.0.0-rc3): - agents: Replace the egrep command with the EGREP definition in ping RA - libcrmcluster: fix format typos - doc: drop Inkscape dependency - tools: validate stonith_admin --timeout value - libpacemaker: set fail-count to INFINITY for fatal failures (gh#ClusterLabs/pacemaker#3771) - libpacemaker: add PCMK__XA_FAILED_START_OFFSET and PCMK__XA_FAILED_STOP_OFFSET (gh#ClusterLabs/pacemaker#3771) - OCF: controld.in: Remove gfs_controld command as it's already obsoleted (gh#ClusterLabs/pacemaker#3767) - Update to version 2.1.9+20241211.4ae3a303e5 (Pacemaker-3.0.0-rc2): - sysconfig: Document using certificates for remote nodes. - sysconfig: Explain permissions needed on TLS-related files. - liblrmd: Enable TLS support for Pacemaker Remote clients. - daemons: Enable TLS support for Pacemaker Remote nodes. - libcrmcommon: Set *tls = NULL in a few more locations. - xml: Warn about post-transform behavior changes for ACLs with xpath - libcrmcluster: restore CPG header size compatibility - libcrmcluster: improve messages in pcmk__cpg_message_data() - libcrmcluster: don't assert for CPG decompression error - libcrmcluster: avoid redundant log for invalid CPG messages - libcrmcluster: initialize from in pcmk__cpg_message_data() - scheduler: avoid memory leak in bundles - libcib: Enable TLS certs for remote CIB operations. - libs: Log if a TLS certificate is close to expiration. OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=407
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.9+20241118.394d77ec98/daemons/controld/controld_membership.c
|
|
===================================================================
|
|
--- pacemaker-2.1.9+20241118.394d77ec98.orig/daemons/controld/controld_membership.c
|
|
+++ pacemaker-2.1.9+20241118.394d77ec98/daemons/controld/controld_membership.c
|
|
@@ -431,7 +431,7 @@ crm_update_quorum(gboolean quorum, gbool
|
|
crm_xml_add_int(update, PCMK_XA_HAVE_QUORUM, quorum);
|
|
crm_xml_add(update, PCMK_XA_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(PCMK_XE_CIB, update, cib_none,
|
|
cib_quorum_update_complete);
|
|
pcmk__xml_free(update);
|
|
Index: pacemaker-2.1.9+20241118.394d77ec98/daemons/controld/controld_transition.c
|
|
===================================================================
|
|
--- pacemaker-2.1.9+20241118.394d77ec98.orig/daemons/controld/controld_transition.c
|
|
+++ pacemaker-2.1.9+20241118.394d77ec98/daemons/controld/controld_transition.c
|
|
@@ -168,7 +168,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.9+20241118.394d77ec98/daemons/fenced/fenced_remote.c
|
|
===================================================================
|
|
--- pacemaker-2.1.9+20241118.394d77ec98.orig/daemons/fenced/fenced_remote.c
|
|
+++ pacemaker-2.1.9+20241118.394d77ec98/daemons/fenced/fenced_remote.c
|
|
@@ -699,7 +699,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 "
|
|
QB_XS " id=%.8s",
|
|
op->action, op->target, op->client_name, op->id);
|
|
|