# HG changeset patch # User Martin von Zweigbergk # Date 2019-02-22 05:27:42 # Node ID 1c1c4ef8b72e39f5ed1c62dc4e31e02e9e08b652 # Parent cd7059d17cb2d56d5231830b9f6d7c9a4ce8ae97 changegroup: move non-pruning of non-ellipsis manifests to _prunemanifests() Google has an extension that overrides _prunemanifests() and removes nodes that we fetch using another mechanism. That broke when _prunemanifests() no longer got called. It works again if we move the check for "not self._ellipses" inside _prunemanifests(). Differential Revision: https://phab.mercurial-scm.org/D6004 diff --git a/mercurial/changegroup.py b/mercurial/changegroup.py --- a/mercurial/changegroup.py +++ b/mercurial/changegroup.py @@ -1073,11 +1073,6 @@ class cgpacker(object): # because of narrow clones). Do this even for the root # directory (tree=='') prunednodes = [] - elif not self._ellipses: - # In non-ellipses case and large repositories, it is better to - # prevent calling of store.rev and store.linkrev on a lot of - # nodes as compared to sending some extra data - prunednodes = nodes.copy() else: # Avoid sending any manifest nodes we can prove the # client already has by checking linkrevs. See the @@ -1110,6 +1105,11 @@ class cgpacker(object): yield tree, [] def _prunemanifests(self, store, nodes, commonrevs): + if not self._ellipses: + # In non-ellipses case and large repositories, it is better to + # prevent calling of store.rev and store.linkrev on a lot of + # nodes as compared to sending some extra data + return nodes.copy() # This is split out as a separate method to allow filtering # commonrevs in extension code. #