##// END OF EJS Templates
branchcache: only iterate over branches which needs to be verified...
Pulkit Goyal -
r42302:75e8e16c default
parent child Browse files
Show More
@@ -200,7 +200,8 b' class branchcache(object):'
200
200
201 def _verifyall(self):
201 def _verifyall(self):
202 """ verifies nodes of all the branches """
202 """ verifies nodes of all the branches """
203 for b in self._entries:
203 needverification = set(self._entries.keys()) - self._verifiedbranches
204 for b in needverification:
204 self._verifybranch(b)
205 self._verifybranch(b)
205
206
206 def __iter__(self):
207 def __iter__(self):
General Comments 0
You need to be logged in to leave comments. Login now