bfc9fbf386
- fencer: get current time correctly * 0001-Fix-fencer-get-current-time-correctly.patch - Update to version 2.1.2+20211124.ada5c3b36 (Pacemaker-2.1.2): - fencer: add missing space to topology message - controller: handle remote connection start timeouts correctly - Update to version 2.1.1+20211116.8db4569e4 (Pacemaker-2.1.2-rc2): - fencing: mark state as done if remapped "on" times out - Fix OCF_RA_INSTALL_DIR Autoconf variable name in pkg-config files - daemons: Free memory at the end of fail_pending_op. - Update to version 2.1.1+20211104.62c36e2b1 (Pacemaker-2.1.2-rc1): - Use user_include_exclude_cb in crm_mon more. (clbz#5485) - Only set default sections in crm_mon once. (clbz#5485) - fencer: improve messages for dynamic target queries (rh#1470834) - fencer: consolidate messages for asynchronous results (rh#1470834) - fencer: log a message when out of memory for dynamic target search (rh#1470834) - libcrmservice: distinguish local and global configuration errors (rh#1470834) - libcrmservice: improve messages for pre-execution failures in child (rh#1470834) - Update to version 2.1.1+20211028.70f82d2c0: - attrd: check election status upon loss of a voter to prevent unexpected pending (bsc#1191676) - Update to version 2.1.1+20211028.7ee8b5bdd: - tools: select technical or human-friendly output of failed actions (rh#1470834) - controller,executor: tweak action result messages (rh#1470834) - install init scripts only if not using systemd - executor: log execution status and exit reason with results (rh#1470834) - executor: improve result message (rh#1470834) OBS-URL: https://build.opensuse.org/request/show/942220 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=354
23 lines
908 B
Diff
23 lines
908 B
Diff
Index: pacemaker-2.1.1+20211028.7ee8b5bdd/daemons/execd/execd_commands.c
|
|
===================================================================
|
|
--- pacemaker-2.1.1+20211028.7ee8b5bdd.orig/daemons/execd/execd_commands.c
|
|
+++ pacemaker-2.1.1+20211028.7ee8b5bdd/daemons/execd/execd_commands.c
|
|
@@ -208,7 +208,7 @@ action_matches(lrmd_cmd_t *cmd, const ch
|
|
static void
|
|
log_finished(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, "monitor", pcmk__str_casei)) {
|
|
@@ -248,7 +248,7 @@ log_finished(lrmd_cmd_t *cmd, int exec_t
|
|
static void
|
|
log_execute(lrmd_cmd_t * cmd)
|
|
{
|
|
- int log_level = LOG_INFO;
|
|
+ int log_level = LOG_NOTICE;
|
|
|
|
if (pcmk__str_eq(cmd->action, "monitor", pcmk__str_casei)) {
|
|
log_level = LOG_DEBUG;
|