[Updated] D10796: revlog: use the `entry` function in bundlerepo
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Mon Jun 7 09:25:58 UTC 2021
Closed by commit rHG53289d02037a: revlog: use the `entry` function in bundlerepo (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
This revision was not accepted when it landed; it landed in state "Needs Review".
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D10796?vs=28477&id=28499
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D10796/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D10796
AFFECTED FILES
mercurial/bundlerepo.py
CHANGE DETAILS
diff --git a/mercurial/bundlerepo.py b/mercurial/bundlerepo.py
--- a/mercurial/bundlerepo.py
+++ b/mercurial/bundlerepo.py
@@ -95,19 +95,15 @@
baserev = self.rev(deltabase)
# start, size, full unc. size, base (unused), link, p1, p2, node, sidedata_offset (unused), sidedata_size (unused)
- e = (
- revlogutils.offset_type(start, flags),
- size,
- -1,
- baserev,
- linkrev,
- self.rev(p1),
- self.rev(p2),
- node,
- 0,
- 0,
- revlog_constants.COMP_MODE_INLINE,
- revlog_constants.COMP_MODE_INLINE,
+ e = revlogutils.entry(
+ flags=flags,
+ data_offset=start,
+ data_compressed_length=size,
+ data_delta_base=baserev,
+ link_rev=linkrev,
+ parent_rev_1=self.rev(p1),
+ parent_rev_2=self.rev(p2),
+ node_id=node,
)
self.index.append(e)
self.bundlerevs.add(n)
To: marmoute, #hg-reviewers, Alphare
Cc: Alphare, mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210607/b3b37776/attachment.html>
More information about the Mercurial-patches
mailing list