We should only rely on whether our paxos version is overlap with whatever
they have -- we'll catch up later with them.
Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
if (m->quorum.size()) {
dout(10) << " existing quorum " << m->quorum << dendl;
- if ((paxos->get_version() + g_conf->paxos_max_join_drift <
- m->paxos_last_version) ||
- (paxos->get_version() < m->paxos_first_version)){
- dout(10) << " peer paxos version " << m->paxos_last_version
+ if (paxos->get_version() < m->paxos_first_version) {
+ dout(10) << " peer paxos versions [" << m->paxos_first_version
+ << "," << m->paxos_last_version << "]"
<< " vs my version " << paxos->get_version()
<< " (too far ahead)"
<< dendl;