File bug-981489_pacemaker-crmd-log-graceful-remote-shutdown.patch of Package pacemaker.3577
commit 32fa6a5662d601f8bc1767b4f985c775cd3c0d45
Author: Ken Gaillot <kgaillot@redhat.com>
Date: Tue Jun 21 16:53:40 2016 -0500
Log: crmd: mention that graceful remote shutdowns may cause connection failures
diff --git a/crmd/lrm_state.c b/crmd/lrm_state.c
index 8910bbd..7b4379b 100644
--- a/crmd/lrm_state.c
+++ b/crmd/lrm_state.c
@@ -569,13 +569,17 @@ remote_proxy_cb(lrmd_t *lrmd, void *userdata, xmlNode *msg)
char *now_s = NULL;
time_t now = time(NULL);
- crm_notice("Graceful proxy shutdown of %s", lrm_state->node_name);
+ crm_notice("%s requested shutdown of its remote connection",
+ lrm_state->node_name);
now_s = crm_itoa(now);
update_attrd(lrm_state->node_name, XML_CIB_ATTR_SHUTDOWN, now_s, NULL, TRUE);
free(now_s);
remote_proxy_ack_shutdown(lrmd);
+
+ crm_warn("Reconnection attempts to %s may result in failures that must be cleared",
+ lrm_state->node_name);
return;
} else if (safe_str_eq(op, LRMD_IPC_OP_NEW)) {