storage: reject to compact on future rev

Compaction on future rev is unreasonable.
This commit is contained in:
Yicheng Qin 2015-08-22 16:44:39 -07:00
parent 47b243be5d
commit 353f10ca2b

View File

@ -158,6 +158,9 @@ func (s *store) Compact(rev int64) error {
if rev <= s.compactMainRev {
return ErrCompacted
}
if rev > s.currentRev.main {
return ErrFutureRev
}
s.compactMainRev = rev