0b9719c4e5
- libcrmcommon: lower message on reading proc file to info * 0001-Log-libcrmcommon-lower-message-on-reading-proc-file-.patch - Update to version 2.0.3+20200511.a9e085d8c: - fencer: avoid possible use-of-NULL when parsing metadata (bsc#1171372) - libstonithd: make the assert message from stonith__device_parameter_flags() more clear (bsc#1171372) - Update to version 2.0.3+20200507.c8529193e: - libstonithd: respect `pcmk_host_argument=none` on `validate` (bsc#1171372) - libstonithd: add `port` or `plug` parameter according to metadata on `validate` if no `pcmk_host_argument` specified (bsc#1171372) - Pacemaker Explained: update the default value and the description of `pcmk_host_argument` (bsc#1171372) - fencer: add `port` or `plug` parameter according to metadata for RHCS-style fence-agents (bsc#1171372) - libstonithd: add function to check supported parameters according to the metadata of a fence agent (bsc#1171372) - Update to version 2.0.3+20200506.a212e4fa3: - fenced: Remove relayed stonith operation.(Fix:CLBZ#5401) - controller: properly detect remote node info requests - cotrold: Notify tengine of completion of CRM_OP_LRM_DELETE.(Fix:CLBZ:#5424) - Update to version 2.0.3+20200429.029571144: - stonith_admin: --delay is an optional option for --fence/--unfence/--reboot commands (ECO-1611, SLE-12239, SLE-12240) - controller: avoid possible use-of-NULL on logging fencing message (ECO-1611, SLE-12239, SLE-12240) - Update to version 2.0.3+20200428.f0a4d08c9: - cib: populate cib_nodes when 'cibadmin -R -scope=configuration' - Update to version 2.0.3+20200423.01b9bbdbe: - cts: add `plug` parameter for fence_dummy agent (bsc#1171372) - libstonithd: `plug` parameter of RHCS-style fence-agents is shown as non-required in the metadata (bsc#1171372) - libstonithd: `action` parameter of RHCS-style fence-agents is shown as non-required in the metadata (bsc#1171372) OBS-URL: https://build.opensuse.org/request/show/802745 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=335
26 lines
902 B
Diff
26 lines
902 B
Diff
From 09d30e173a27df86e715f6eb21b4c69509c06ff3 Mon Sep 17 00:00:00 2001
|
|
From: "Gao,Yan" <ygao@suse.com>
|
|
Date: Sat, 9 May 2020 14:37:14 +0200
|
|
Subject: [PATCH] Log: libcrmcommon: lower message on reading proc file to info
|
|
|
|
---
|
|
lib/common/pid.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/common/pid.c b/lib/common/pid.c
|
|
index 90a24a699..20529ebaa 100644
|
|
--- a/lib/common/pid.c
|
|
+++ b/lib/common/pid.c
|
|
@@ -73,7 +73,7 @@ pcmk__pid_active(pid_t pid, const char *daemon)
|
|
rc = readlink(proc_path, exe_path, sizeof(exe_path) - 1);
|
|
if (rc < 0) {
|
|
if (last_asked_pid != pid) {
|
|
- crm_err("Could not read from %s: %s " CRM_XS " errno=%d",
|
|
+ crm_info("Could not read from %s: %s " CRM_XS " errno=%d",
|
|
proc_path, strerror(errno), errno);
|
|
last_asked_pid = pid;
|
|
}
|
|
--
|
|
2.26.1
|
|
|