Merge pull request #2457 from ThomasWaldmann/beyond-repair-1.0

be more clear that this is a "beyond repair" case, fixes #2427
This commit is contained in:
enkore 2017-04-28 22:09:10 +02:00 committed by GitHub
commit 3451135536
1 changed files with 7 additions and 1 deletions

View File

@ -152,7 +152,13 @@ class Repository:
index_transaction_id = self.get_index_transaction_id()
segments_transaction_id = self.io.get_segments_transaction_id()
if index_transaction_id is not None and segments_transaction_id is None:
raise self.CheckNeeded(self.path)
# we have a transaction id from the index, but we did not find *any*
# commit in the segment files (thus no segments transaction id).
# this can happen if a lot of segment files are lost, e.g. due to a
# filesystem or hardware malfunction. it means we have no identifiable
# valid (committed) state of the repo which we could use.
msg = '%s" - although likely this is "beyond repair' % self.path # dirty hack
raise self.CheckNeeded(msg)
# Attempt to automatically rebuild index if we crashed between commit
# tag write and index save
if index_transaction_id != segments_transaction_id: