Mercurial > hg
diff mercurial/unionrepo.py @ 51028:f70ce1aedbcb
manifestrevlog: flag some inconsistency in bundle/union repo inheritance
This "work" but still, this is weird, let us point it out.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Tue, 10 Oct 2023 10:01:57 +0200 |
parents | 8520db304f01 |
children | 498afb627f78 |
line wrap: on
line diff
--- a/mercurial/unionrepo.py Sat Sep 30 02:02:36 2023 +0200 +++ b/mercurial/unionrepo.py Tue Oct 10 10:01:57 2023 +0200 @@ -205,6 +205,8 @@ class unionmanifest(unionrevlog, manifest.manifestrevlog): def __init__(self, nodeconstants, opener, opener2, linkmapper): + # XXX manifestrevlog is not actually a revlog , so mixing it with + # bundlerevlog is not a good idea. manifest.manifestrevlog.__init__(self, nodeconstants, opener) manifest2 = manifest.manifestrevlog(nodeconstants, opener2) unionrevlog.__init__(