pacemaker/crm_history_8_3681d3471fde.patch

35 lines
1.0 KiB
Diff
Raw Normal View History

- Upgrade to 1.1.6. - PE: Demote from Master does not clear previous errors - crmd: Prevent secondary DC fencing resulting from CIB updates that are lost due to elections - crmd: Log duplicate DC detection as a WARNING not ERROR - crmd: Bug lf#2632 - Correctly handle nodes that return faster than stonith - Core: Treat GNUTLS_E_UNEXPECTED_PACKET_LENGTH as normal termination of a TLS session - cib: Call gnutls_bye() and shutdown() when disconnecting from remote TLS connections - cib: Remove disconnected remote connections from mainloop - cib: Attempt a graceful sign-off for remote TLS connections - Core: Ensure there is sufficient space for EOS when building short-form option strings (prevents segfault) - Core: Fix variable expansion in pkg-config files - PE: Resolve memory leak reported by valgrind - PE: Fix memory leak for re-allocated resources reported by valgrind - PE: Improve the merging with template's operations - crmd: Allow nodes to fence themselves if they're the last one standing (lf#2584) - stonith: Add an API call for listing installed agents - stonith: Allow the fencing history to be queried - stonith: Ensure completed operations are recorded as such in the history - stonith: Support --quiet to display just the seconds since epoch at which a node was last shot - stonith: Serialize actions for a given device - stonith: Add missing entries to stonith_error2string() (missing OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=18
2011-09-20 14:36:23 +00:00
# HG changeset patch
# User Dejan Muhamedagic <dejan@hello-penguin.com>
# Date 1313416746 -7200
# Node ID 3681d3471fdecde109ea7c25ab2ceb31e1e8646f
# Parent 3f3c348aaaed52383f6646b08899943aec8911f4
Low: Shell: update log patterns for history
diff --git a/shell/modules/log_patterns.py b/shell/modules/log_patterns.py
--- a/shell/modules/log_patterns.py
+++ b/shell/modules/log_patterns.py
@@ -3,7 +3,7 @@
# log pattern specification
#
# patterns are grouped one of several classes:
-# - resources: pertaining to a resource
+# - resource: pertaining to a resource
# - node: pertaining to a node
# - quorum: quorum changes
# - events: other interesting events (core dumps, etc)
@@ -17,12 +17,12 @@
log_patterns = {
"resource": (
( # detail 0
- "lrmd:.*rsc:%%.*(start|stop)",
+ "lrmd:.*rsc:%%.*(start|stop|promote|demote|migrate)",
"lrmd:.*RA output:.*%%.*stderr",
"lrmd:.*WARN:.*Managed.*%%.*exited",
),
( # detail 1
- "lrmd:.*rsc:%%.*probe",
+ "lrmd:.*rsc:%%.*(probe|notify)",
"lrmd:.*info:.*Managed.*%%.*exited",
),
),