# HG changeset patch # User Pierre-Yves David # Date 2024-09-25 14:38:31 # Node ID 145f66ea1664997f543738dbf46238c1aa59e245 # Parent d7f17819ae9e3d2c2008a60365c3c8f684a8e758 branchmap: use the proper experimental name in cacheutil Otherwise they are not properly copied around. diff --git a/mercurial/cacheutil.py b/mercurial/cacheutil.py --- a/mercurial/cacheutil.py +++ b/mercurial/cacheutil.py @@ -16,8 +16,8 @@ def cachetocopy(srcrepo): # ones. Therefore copy all branch caches over. cachefiles = [b'branch2'] cachefiles += [b'branch2-%s' % f for f in repoview.filtertable] - cachefiles += [b'branch3'] - cachefiles += [b'branch3-%s' % f for f in repoview.filtertable] + cachefiles += [b'branch3-exp'] + cachefiles += [b'branch3-exp-%s' % f for f in repoview.filtertable] cachefiles += [b'rbc-names-v2', b'rbc-revs-v2'] cachefiles += [b'tags2'] cachefiles += [b'tags2-%s' % f for f in repoview.filtertable]