- build: Fix default pacemaker-remoted path - Update to version 3.0.0+20250210.af3642fbf6: - libcrmcluster: prevent external callers from triggering assertion when connecting to cluster (gh#ClusterLabs/pacemaker#3821) - Update to version 3.0.0+20250207.d06c888ba7: - libpacemaker: Reset scheduler object in pcmk_simulate() - libpe_status: Make cluster_status() idempotent - tools: Fix overflow in crm_simulate --repeat - libpacemaker: Handle scandir() error in pcmk__profile_dir() - libpacemaker: Fix mem leak in pcmk__profile_dir() - tools: Avoid crash in crm_simulate --profile - Update to version 3.0.0+20250205.88e9ec1325: - libcrmservices: Unref the dbus connection... (gh#ClusterLabs/pacemaker#3816) - libcrmservices: Don't leak msg if systemd_proxy is NULL. (gh#ClusterLabs/pacemaker#3816) - Update to version 3.0.0+20250203.f950b1d05d: - python: Add python value for new CRM_EX_NO_DC exit code. (gh#ClusterLabs/pacemaker#3815) - libcrmcommon: Fix memory leak in text_end_list()/curses_end_list() (gh#ClusterLabs/pacemaker#3814) - crmadmin: return error if DC is not elected #2902 #3606 (gh#ClusterLabs/pacemaker#3716) - Update to version 3.0.0+20250128.0de22e5f75: - libraries: Update version numbers in so names - Rebase: * bug-995365_pacemaker-cts-restart-systemd-journald.patch - Update to version 3.0.0+20250114.7dc494a96f: - controller: best practices for send_stonith_update() (gh#ClusterLabs/pacemaker#3796) OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=409
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;
|