From 72e332dd6f9d61d48d54ef404d0110bba2e757ab Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Feb 24 2021 16:08:35 +0000 Subject: Fix: scheduler: Use the default format handler in a few more places. --- diff --git a/lib/pengine/pe_output.c b/lib/pengine/pe_output.c index d0f96f4..9d43e5f 100644 --- a/lib/pengine/pe_output.c +++ b/lib/pengine/pe_output.c @@ -1847,9 +1847,7 @@ static pcmk__message_entry_t fmt_functions[] = { { "cluster-times", "log", pe__cluster_times_text }, { "cluster-times", "text", pe__cluster_times_text }, { "cluster-times", "xml", pe__cluster_times_xml }, - { "failed-action", "html", pe__failed_action_text }, - { "failed-action", "log", pe__failed_action_text }, - { "failed-action", "text", pe__failed_action_text }, + { "failed-action", "default", pe__failed_action_text }, { "failed-action", "xml", pe__failed_action_xml }, { "group", "xml", pe__group_xml }, { "group", "html", pe__group_html }, @@ -1868,9 +1866,7 @@ static pcmk__message_entry_t fmt_functions[] = { { "node-attribute", "log", pe__node_attribute_text }, { "node-attribute", "text", pe__node_attribute_text }, { "node-attribute", "xml", pe__node_attribute_xml }, - { "op-history", "html", pe__op_history_text }, - { "op-history", "log", pe__op_history_text }, - { "op-history", "text", pe__op_history_text }, + { "op-history", "default", pe__op_history_text }, { "op-history", "xml", pe__op_history_xml }, { "primitive", "xml", pe__resource_xml }, { "primitive", "html", pe__resource_html },