Revert "mon: update assert for looser requirements"

We reverted the gating by paxos sequences, so now we don't
need to look at them at all.

This reverts commit 1e6f02b337.
Signed-off-by: Greg Farnum <greg@inktank.com>
This commit is contained in:
Greg Farnum 2013-04-30 13:21:28 -07:00
parent cedcb1934f
commit d00b4cd783

View File

@ -271,7 +271,7 @@ void Elector::handle_victory(MMonElection *m)
dout(5) << "handle_victory from " << m->get_source() << " quorum_features " << m->quorum_features << dendl;
int from = m->get_source().num();
assert((from < mon->rank) || (acked_first_paxos_version > mon->paxos->get_version()));
assert(from < mon->rank);
assert(m->epoch % 2 == 0);
leader_acked = -1;