From fe62f602f1669c0c33155b27fb8b7b993fcb6113 Mon Sep 17 00:00:00 2001 From: Mark Haverkamp Date: Tue, 5 Apr 2005 15:56:49 +0000 Subject: [PATCH] Replace assert with a return. This will allow the custer to continue to run. This happens when a joining node receives a message from a node that it doesn't know about yet. This is a temporary fix for now. (Logical change 1.169) git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@576 fd59a12c-fef9-0310-b244-a6a79926bd2f --- exec/evt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/evt.c b/exec/evt.c index 90f471a5..9ad77db2 100644 --- a/exec/evt.c +++ b/exec/evt.c @@ -3367,7 +3367,7 @@ static int evt_remote_chan_op(void *msg, struct in_addr source_addr, log_printf(LOG_LEVEL_WARNING, "Evt remote channel op: Node data for addr %s is NULL\n", inet_ntoa(source_addr)); - assert(0); + return 0; } else { evt_add_node(source_addr, cn); mn = evt_find_node(source_addr);