f282465d02
- Update to version 2.0.0+20180726.3d81c89b8: - Shutdown corosync after a fatal error - tools: ipmiservicelogd FTBFS on ppc64le - tools: notifyServicelogEvent FTBFS on ppc64le - tools: detect CIB directory correctly - tools: avoid memory leak when crm_resource checks resource - controller: avoid any chance of use-of-NULL when doing LRM op - resources: controld doesn't need to check for corosync 1 plugin - resources: use correct variable name in Stateful - cts-scheduler: restore ability to pass arguments to single test run - resources: use ocf_is_true in SysInfo - spec: drop superfluous dependency of -libs-devel on -cts - tools: update URL in crm_simulate help - crm_mon: rhbz#1461964 - add fence history features - Update to version 2.0.0+20180706.8cf3fe749 (Pacemaker-2.0.0): - tools: Multiple -V increase debug level (#1526) - scheduler: clarify multiple-anonymous-instances message - scheduler: avoid use-after-free when on-fail=block - controller: add node name to meta-data call environment - controller: filter certain synthesized failures from CIB - controller: filter certain action timeouts from CIB - controller: don't record pending notifies in CIB - executor: cancel recurring monitors if fence device registration is lost - controller: avoid memory leak if start-up fails - XML: schemas.c: fix possible memleak + less magic with numeric constants - tools: stonith_admin -h/-H options are queries - libstonithd: avoid memory leak when getting meta-data - XML: resources-3.1.rng: relaxed schema after tight upgrade enforcement - XML: schemas.c: take severities of XSLT messages into account properly OBS-URL: https://build.opensuse.org/request/show/625813 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=307
23 lines
816 B
Diff
23 lines
816 B
Diff
Index: pacemaker-1.1.18+20180430.c0d7ba798/daemons/execd/execd_commands.c
|
|
===================================================================
|
|
--- pacemaker-1.1.18+20180430.c0d7ba798.orig/daemons/execd/execd_commands.c
|
|
+++ pacemaker-1.1.18+20180430.c0d7ba798/daemons/execd/execd_commands.c
|
|
@@ -83,7 +83,7 @@ static void
|
|
log_finished(lrmd_cmd_t * cmd, int exec_time, int queue_time)
|
|
{
|
|
char pid_str[32] = { 0, };
|
|
- int log_level = LOG_INFO;
|
|
+ int log_level = LOG_NOTICE;
|
|
|
|
if (cmd->last_pid) {
|
|
snprintf(pid_str, 32, "%d", cmd->last_pid);
|
|
@@ -107,7 +107,7 @@ log_finished(lrmd_cmd_t * cmd, int exec_
|
|
static void
|
|
log_execute(lrmd_cmd_t * cmd)
|
|
{
|
|
- int log_level = LOG_INFO;
|
|
+ int log_level = LOG_NOTICE;
|
|
|
|
if (safe_str_eq(cmd->action, "monitor")) {
|
|
log_level = LOG_DEBUG;
|