- CTS: Fix cts-lab --list. (gh#ClusterLabs/pacemaker#3723) - Update to version 2.1.9+20241105.e043e6816a: - executor: avoid use-after-free upon shutdown (bsc#1232613, gh#ClusterLabs/pacemaker#3719) - Update to version 2.1.9+20241031.49aab99839 (Pacemaker-2.1.9): - includes: Bump CRM_FEATURE_SET for iso8601 formatted output. - schemas: Add an XML schema for iso8601 output. - tools: Convert iso8601 to formatted output. - Update to version 2.1.8+20241021.40d69ff424 (Pacemaker-2.1.9-rc3): - tools: restore crmadmin default timeout to 30 seconds (bsc#1217259, bsc#1228781, jsc#PED-8311, gh#ClusterLabs/pacemaker#3703) - libcrmcommon: any negative interval is an error - agents: always allow attribute agent to show metadata - agents: use RESOURCENAME in attribute agent metadata - agents: use configured run directory in attribute agent - controld: leave xml-src attribute empty when no DC selected #2902 (bsc#1217259, bsc#1228781, jsc#PED-8311, gh#ClusterLabs/pacemaker#3702) - Update to version 2.1.8+20241015.33f3052b89 (Pacemaker-2.1.9-rc2): - pacemakerd: combine subdaemon start-up logs - libcrmcommon: avoid potential overflow when adding seconds - libcib: Perform server-side remote CIB reads asynchronously. - libcib: Perform client-side remote CIB reads asynchronously. - tools: crm_resource returns error on failed schema upgrade - libcrmcommon: Don't assert on failure to write errors. (gh#ClusterLabs/pacemaker#3684) - Update to version 2.1.8+20241003.95cef6b307 (Pacemaker-2.1.9-rc1): - NLS: update translations for current code base - scheduler: Fixed memory leak when searching for unfencing devices. (gh#ClusterLabs/pacemaker#3678) OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=405
23 lines
933 B
Diff
23 lines
933 B
Diff
Index: pacemaker-2.1.6+20230821.d00694366/daemons/execd/execd_commands.c
|
|
===================================================================
|
|
--- pacemaker-2.1.6+20230821.d00694366.orig/daemons/execd/execd_commands.c
|
|
+++ pacemaker-2.1.6+20230821.d00694366/daemons/execd/execd_commands.c
|
|
@@ -210,7 +210,7 @@ action_matches(const lrmd_cmd_t *cmd, co
|
|
static void
|
|
log_finished(const lrmd_cmd_t *cmd, int exec_time_ms, int queue_time_ms)
|
|
{
|
|
- int log_level = LOG_INFO;
|
|
+ int log_level = LOG_NOTICE;
|
|
GString *str = g_string_sized_new(100); // reasonable starting size
|
|
|
|
if (pcmk__str_eq(cmd->action, PCMK_ACTION_MONITOR, pcmk__str_casei)) {
|
|
@@ -251,7 +251,7 @@ log_finished(const lrmd_cmd_t *cmd, int
|
|
static void
|
|
log_execute(lrmd_cmd_t * cmd)
|
|
{
|
|
- int log_level = LOG_INFO;
|
|
+ int log_level = LOG_NOTICE;
|
|
|
|
if (pcmk__str_eq(cmd->action, PCMK_ACTION_MONITOR, pcmk__str_casei)) {
|
|
log_level = LOG_DEBUG;
|