File bsc#1174696-0001-Log-libpe_status-downgrade-the-message-about-the-mea-1.1.patch of Package pacemaker.19778
From b02bd8323163530db9e8e511a2001070daf495db Mon Sep 17 00:00:00 2001
From: "Gao,Yan" <ygao@suse.com>
Date: Fri, 14 Aug 2020 12:33:10 +0200
Subject: [PATCH 1/3] Log: libpe_status: downgrade the message about the
meaning of `have-watchdog=true` to info
The message actually only indicates there's the setting
`have-watchdog=true` and describes the meaning of it. It's rather
confusing to constantly appear if normal SBD with disk is used.
On the other hand, we should improve the documentation about the cluster
options related to watchdog.
---
lib/pengine/unpack.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/pengine/unpack.c b/lib/pengine/unpack.c
index fe5018203..a5eee6f21 100644
--- a/lib/pengine/unpack.c
+++ b/lib/pengine/unpack.c
@@ -196,7 +196,8 @@ unpack_config(xmlNode * config, pe_working_set_t * data_set)
value = pe_pref(data_set->config_hash, XML_ATTR_HAVE_WATCHDOG);
if (value && crm_is_true(value)) {
- crm_notice("Watchdog will be used via SBD if fencing is required");
+ crm_info("Watchdog-based self-fencing will be performed via SBD if "
+ "fencing is required and stonith-watchdog-timeout is positive");
set_bit(data_set->flags, pe_flag_have_stonith_resource);
}
--
2.26.2