c9408c0823
- Update to version 2.1.7+20240711.239cba384: - various: Don't set cluster-layer node ID as XML ID - tools: crm_node -i must initialize nodeid before passing pointer (gh#ClusterLabs/pacemaker#3574) - Update to version 2.1.7+20240709.f04c3b02c: - tools: CIB clients retry signon upon an EAGAIN error (gh#ClusterLabs/pacemaker#3567, bsc#1224183) - libcib: new function cib__signon_attempts() (gh#ClusterLabs/pacemaker#3567, bsc#1224183) - Update to version 2.1.7+20240708.347e83d87: - crm_verify: Improve checking of fencing level IDs - Update to version 2.1.7+20240703.f73f033d5 (Pacemaker-2.1.8-rc3): - sysconfig: deprecate PCMK_dh_min_bits environment variable - Update to version 2.1.7+20240701.8af8b59e2: - libcrmcluster: use local hostname for node name if not configured in corosync (gh#ClusterLabs/pacemaker#3551) - Update to version 2.1.7+20240701.b4e61209c: - tools: Don't double-free XML in crm_verify after schema update - Update to version 2.1.7+20240701.a1003bbf1: - cts-cli: update expected output for crm_verify to distinguish configuration warnings and errors (gh#ClusterLabs/pacemaker#3543) - tools: crm_verify distinguishes configuration warnings and errors (gh#ClusterLabs/pacemaker#3543) - Update to version 2.1.7+20240624.5d44a760b: - libcrmcommon: don't try to add to full string in pcmk__time_format_hr() - libcrmcommon: handle formatting errors in pcmk__time_format_hr() - scheduler: consider group locations when member is explicit colocation dependent - tools: Don't skip formatting if running crm_simulate interactively. OBS-URL: https://build.opensuse.org/request/show/1187166 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=401
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;
|