diff mercurial/repair.py @ 50676:8f7e189af9dc

repair: use `is_manifestlog` to recognise manifest revlog This is simpler that comparing flag, and we want to remove these flags anyway.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 12 Jun 2023 23:24:41 +0200
parents 862e3a13da44
children 8f2ea3fa50fd
line wrap: on
line diff
--- a/mercurial/repair.py	Tue Jun 06 04:56:54 2023 +0200
+++ b/mercurial/repair.py	Mon Jun 12 23:24:41 2023 +0200
@@ -24,7 +24,6 @@
     phases,
     requirements,
     scmutil,
-    store,
     transaction,
     util,
 )
@@ -446,9 +445,7 @@
         # This logic is safe if treemanifest isn't enabled, but also
         # pointless, so we skip it if treemanifest isn't enabled.
         for entry in repo.store.data_entries():
-            if not entry.is_revlog:
-                continue
-            if entry.revlog_type == store.FILEFLAGS_MANIFESTLOG:
+            if entry.is_revlog and entry.is_manifestlog:
                 yield repo.manifestlog.getstorage(entry.target_id)