From 276df5918b057765e50b4c8a48ec8060f8abe5a7 Mon Sep 17 00:00:00 2001 From: Jeffrey Hutzelman Date: Sat, 10 Jan 2004 16:59:35 +0000 Subject: [PATCH] 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. --- 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 0d69a1449..9d836d198 100644 --- a/src/ubik/beacon.c +++ b/src/ubik/beacon.c @@ -381,7 +381,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