##// END OF EJS Templates
tags-cache: skip the filternode step if we are not going to use it...
marmoute -
r52490:b4a6a1ff default
parent child Browse files
Show More
@@ -83,7 +83,9 b' from .utils import stringutil'
83 def warm_cache(repo):
83 def warm_cache(repo):
84 """ensure the cache is properly filled"""
84 """ensure the cache is properly filled"""
85 unfi = repo.unfiltered()
85 unfi = repo.unfiltered()
86 fnoderevs(repo.ui, unfi, unfi.changelog.revs())
86 tonode = unfi.changelog.node
87 nodes = [tonode(r) for r in unfi.changelog.revs()]
88 _getfnodes(repo.ui, repo, nodes)
87
89
88
90
89 def fnoderevs(ui, repo, revs):
91 def fnoderevs(ui, repo, revs):
General Comments 0
You need to be logged in to leave comments. Login now