File pacemaker-crmd-transitions-for-CIB-comment-changes.patch of Package pacemaker.3577
commit 73ac4a6741a4811a46279e39c26b46ca77f711d8
Author: Ken Gaillot <kgaillot@redhat.com>
Date: Wed Jul 6 17:16:07 2016 -0500
Fix: crmd: don't abort transitions for CIB comment changes
diff --git a/crmd/te_callbacks.c b/crmd/te_callbacks.c
index 34c4456..36815ba 100644
--- a/crmd/te_callbacks.c
+++ b/crmd/te_callbacks.c
@@ -425,6 +425,10 @@ te_update_diff(const char *event, xmlNode * msg)
}
if(match) {
+ if (match->type == XML_COMMENT_NODE) {
+ crm_trace("Ignoring %s operation for comment at %s", op, xpath);
+ continue;
+ }
name = (const char *)match->name;
}