branchcache: don't verify all nodes while writing stable
authorPulkit Goyal <pulkit@yandex-team.ru>
Fri, 19 Apr 2019 23:13:28 +0300
branchstable
changeset 42151 07faf5c65190
parent 42150 71d8b4d91616
child 42152 bd92dd3eff42
branchcache: don't verify all nodes while writing nodes are verified either when they are added or used. In case of commits. we will load the whole branchmap, only verify nodes for the branch on which we are committing and then we write. However before this patch, writing the branchmap was validating all the nodes whereas it should not. This patch fixes that. Differential Revision: https://phab.mercurial-scm.org/D6290
mercurial/branchmap.py
--- a/mercurial/branchmap.py	Sat Apr 20 07:29:07 2019 -0700
+++ b/mercurial/branchmap.py	Fri Apr 19 23:13:28 2019 +0300
@@ -341,7 +341,7 @@
                 cachekey.append(hex(self.filteredhash))
             f.write(" ".join(cachekey) + '\n')
             nodecount = 0
-            for label, nodes in sorted(self.iteritems()):
+            for label, nodes in sorted(self._entries.iteritems()):
                 label = encoding.fromlocal(label)
                 for node in nodes:
                     nodecount += 1