From: <go...@bo...> - 2008-02-11 16:33:21
|
I've been trying to track down the issue of a cluster with: two_node="1" expected_vodes="1" not coming up as quorate with just one node, and as far as I can tell, it is because /usr/bin/cl_checknodes is returning the wrong value. I think this bit around line 72 is causing the problem: if len(nodeelements) == 1: quorum=1 else: quorum=len(nodeelements)/2+1 Should that not instead be something like: if len(nodeelements) <= 2: quorum=1 else: quorum=len(nodeelements)/2+1 Please advise. Gordan |