##// END OF EJS Templates
manifestv2: disable fastdelta optimization...
Martin von Zweigbergk -
r24527:8aead3bc default
parent child Browse files
Show More
@@ -647,7 +647,8 b' class manifest(revlog.revlog):'
647 return None, None
647 return None, None
648
648
649 def add(self, m, transaction, link, p1, p2, added, removed):
649 def add(self, m, transaction, link, p1, p2, added, removed):
650 if p1 in self._mancache and not self._usetreemanifest:
650 if (p1 in self._mancache and not self._usetreemanifest
651 and not self._usemanifestv2):
651 # If our first parent is in the manifest cache, we can
652 # If our first parent is in the manifest cache, we can
652 # compute a delta here using properties we know about the
653 # compute a delta here using properties we know about the
653 # manifest up-front, which may save time later for the
654 # manifest up-front, which may save time later for the
General Comments 0
You need to be logged in to leave comments. Login now