diff -r 88a47cbf063c -r 74271829ddc0 mercurial/wireprotov1server.py --- a/mercurial/wireprotov1server.py Wed Jul 01 15:14:59 2020 +0530 +++ b/mercurial/wireprotov1server.py Thu Oct 15 15:57:36 2020 +0200 @@ -19,6 +19,7 @@ from . import ( bundle2, + bundlecaches, changegroup as changegroupmod, discovery, encoding, @@ -387,8 +388,8 @@ manifest = repo.vfs.tryread(b'pullbundles.manifest') if not manifest: return None - res = exchange.parseclonebundlesmanifest(repo, manifest) - res = exchange.filterclonebundleentries(repo, res) + res = bundlecaches.parseclonebundlesmanifest(repo, manifest) + res = bundlecaches.filterclonebundleentries(repo, res) if not res: return None cl = repo.unfiltered().changelog