Mercurial > public > mercurial-scm > hg-stable
diff mercurial/changegroup.py @ 38926:75d6139e69f9
changegroup: move close() from narrow
More of the same.
Differential Revision: https://phab.mercurial-scm.org/D4064
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Thu, 02 Aug 2018 09:52:01 -0700 |
parents | 66cf046ef60f |
children | c9315bc578bc |
line wrap: on
line diff
--- a/mercurial/changegroup.py Thu Aug 02 09:53:22 2018 -0700 +++ b/mercurial/changegroup.py Thu Aug 02 09:52:01 2018 -0700 @@ -544,6 +544,13 @@ self._verbosenote = lambda s: None def close(self): + # Ellipses serving mode. + getattr(self, 'clrev_to_localrev', {}).clear() + if getattr(self, 'next_clrev_to_localrev', {}): + self.clrev_to_localrev = self.next_clrev_to_localrev + del self.next_clrev_to_localrev + self.changelog_done = True + return closechunk() def fileheader(self, fname):