##// END OF EJS Templates
remotefilelog: remove obsolete filtering of treemanifest directories...
Martin von Zweigbergk -
r42672:d768ca42 default
parent child Browse files
Show More
@@ -990,9 +990,6 b' def _fileprefetchhook(repo, revs, match)'
990 mf = ctx.manifest()
990 mf = ctx.manifest()
991 sparsematch = repo.maybesparsematch(ctx.rev())
991 sparsematch = repo.maybesparsematch(ctx.rev())
992 for path in ctx.walk(match):
992 for path in ctx.walk(match):
993 if path.endswith('/'):
994 # Tree manifest that's being excluded as part of narrow
995 continue
996 if (not sparsematch or sparsematch(path)) and path in mf:
993 if (not sparsematch or sparsematch(path)) and path in mf:
997 allfiles.append((path, hex(mf[path])))
994 allfiles.append((path, hex(mf[path])))
998 repo.fileservice.prefetch(allfiles)
995 repo.fileservice.prefetch(allfiles)
General Comments 0
You need to be logged in to leave comments. Login now