From: Jeffrey Hutzelman Date: Sat, 10 Jan 2004 17:02:40 +0000 (+0000) Subject: STABLE12-ubik-election-epoch-fix-20040110 X-Git-Tag: openafs-stable-1_2_11~7 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=4ea634d075b1aa7439faf9cf0d7579740d6ad164;p=packages%2Fo%2Fopenafs.git STABLE12-ubik-election-epoch-fix-20040110 ubik's ability to keep quorum broke when unix time passed 2^30 seconds. Buy us another 2^30 seconds. (cherry picked from commit 276df5918b057765e50b4c8a48ec8060f8abe5a7) --- diff --git a/src/ubik/beacon.c b/src/ubik/beacon.c index 25411aa05..e5f92f037 100644 --- a/src/ubik/beacon.c +++ b/src/ubik/beacon.c @@ -367,7 +367,7 @@ ubeacon_Interact() { /* now analyze return codes, counting up our votes */ yesVotes = 0; /* count how many to ensure we have quorum */ - oldestYesVote = 0x3fffffff; /* time quorum expires */ + oldestYesVote = 0x7fffffff; /* time quorum expires */ syncsite= ubeacon_AmSyncSite(); startTime = FT_ApproxTime(); /*