mercurial/wireprotov1server.py
changeset 45784 74271829ddc0
parent 45682 d2e1dcd4490d
child 45785 80f32ec8653a
--- 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