From mboxrd@z Thu Jan 1 00:00:00 1970 From: teigland@sourceware.org Date: 14 Jul 2006 20:45:28 -0000 Subject: [Cluster-devel] cluster/group/daemon app.c Message-ID: <20060714204528.8776.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: cluster Changes by: teigland at sourceware.org 2006-07-14 20:45:28 Modified files: group/daemon : app.c Log message: node A may get a start cb and send a started message, and node B may receive the started message before it gets its own start cb; node B shouldn't ignore the started message from A. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/group/daemon/app.c.diff?cvsroot=cluster&r1=1.34&r2=1.35 --- cluster/group/daemon/app.c 2006/06/28 22:16:36 1.34 +++ cluster/group/daemon/app.c 2006/07/14 20:45:27 1.35 @@ -1079,11 +1079,9 @@ { node_t *node; - if (!event_state_starting(a)) { - log_error(a->g, "mark_node_started: event not starting %d " + if (!event_state_starting(a)) + log_debug(a->g, "mark_node_started: event not starting %d " "from %d", a->current_event->state, nodeid); - return -1; - } node = find_app_node(a, nodeid); if (!node) {