From 4ea634d075b1aa7439faf9cf0d7579740d6ad164 Mon Sep 17 00:00:00 2001 From: Jeffrey Hutzelman Date: Sat, 10 Jan 2004 17:02:40 +0000 Subject: [PATCH] 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) --- src/ubik/beacon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); /* -- 2.39.5