diff mercurial/revlog.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 4cd214c9948d
children e8c11a2c96c0
line wrap: on
line diff
--- a/mercurial/revlog.py	Fri Feb 19 11:07:10 2021 +0100
+++ b/mercurial/revlog.py	Thu Feb 18 17:36:52 2021 +0100
@@ -2527,7 +2527,7 @@
             deltacomputer = deltautil.deltacomputer(self)
             # loop through our set of deltas
             for data in deltas:
-                node, p1, p2, linknode, deltabase, delta, flags = data
+                node, p1, p2, linknode, deltabase, delta, flags, sidedata = data
                 link = linkmapper(linknode)
                 flags = flags or REVIDX_DEFAULT_FLAGS