# HG changeset patch # User Gregory Szorc # Date 1533346260 25200 # Node ID 6d726d1b08cb4cccc43e1647139205f48e9242cd # Parent d2ab0db894650302c2df247137699543b360455c changegroup: record changelogdone after fully consuming its data Setting this as a side-effect of calling _close() is wonky. There's only one group for changelog data. So we can wait until after all data has been emitted before recording it. Differential Revision: https://phab.mercurial-scm.org/D4136 diff -r d2ab0db89465 -r 6d726d1b08cb mercurial/changegroup.py --- a/mercurial/changegroup.py Mon Aug 06 09:24:35 2018 -0700 +++ b/mercurial/changegroup.py Fri Aug 03 18:31:00 2018 -0700 @@ -607,7 +607,6 @@ if self._nextclrevtolocalrev is not None: self._clrevtolocalrev = self._nextclrevtolocalrev self._nextclrevtolocalrev = None - self._changelogdone = True return closechunk() @@ -730,6 +729,8 @@ self._verbosenote(_('%8.i (changelog)\n') % size) + self._changelogdone = True + clrevorder = clstate['clrevorder'] mfs = clstate['mfs'] changedfiles = clstate['changedfiles']