[Cluster-devel] cluster/group/daemon app.c

teigland at sourceware.org teigland at sourceware.org
Fri Jul 14 20:45:28 UTC 2006


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) {




More information about the Cluster-devel mailing list