Mercurial > public > mercurial-scm > hg-stable
diff mercurial/bundlerepo.py @ 46724:a41565bef69f
changegroup: add v4 changegroup for revlog v2 exchange
This change only adds the required infrastructure for the new changegroup format
and does not do any actual exchange. This will be done in the next patches.
Differential Revision: https://phab.mercurial-scm.org/D10026
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Thu, 18 Feb 2021 17:36:52 +0100 |
parents | 59fa3890d40a |
children | 6266d19556ad |
line wrap: on
line diff
--- a/mercurial/bundlerepo.py Fri Feb 19 11:07:10 2021 +0100 +++ b/mercurial/bundlerepo.py Thu Feb 18 17:36:52 2021 +0100 @@ -61,7 +61,7 @@ self.repotiprev = n - 1 self.bundlerevs = set() # used by 'bundle()' revset expression for deltadata in cgunpacker.deltaiter(): - node, p1, p2, cs, deltabase, delta, flags = deltadata + node, p1, p2, cs, deltabase, delta, flags, sidedata = deltadata size = len(delta) start = cgunpacker.tell() - size