changeset 46712 | e8c11a2c96c0 |
parent 46711 | a41565bef69f |
child 46713 | bc2519513ae0 |
--- a/mercurial/changegroup.py Thu Feb 18 17:36:52 2021 +0100 +++ b/mercurial/changegroup.py Thu Feb 18 18:18:35 2021 +0100 @@ -618,6 +618,13 @@ yield prefix yield data + sidedata = delta.sidedata + if sidedata is not None: + # Need a separate chunk for sidedata to be able to differentiate + # "raw delta" length and sidedata length + yield chunkheader(len(sidedata)) + yield sidedata + def _sortnodesellipsis(store, nodes, cl, lookup): """Sort nodes for changegroup generation."""