##// END OF EJS Templates
removed buggy iteration over file nodes in whoosh indexer, this greatly improves speed of indexing.
marcink -
r1451:200e6631 beta
parent child Browse files
Show More
@@ -112,9 +112,6 b' class WhooshIndexingDaemon(object):'
112 112 for topnode, dirs, files in tip.walk('/'):
113 113 for f in files:
114 114 index_paths_.add(jn(repo.path, f.path))
115 for dir in dirs:
116 for f in files:
117 index_paths_.add(jn(repo.path, f.path))
118 115
119 116 except RepositoryError, e:
120 117 log.debug(traceback.format_exc())
General Comments 0
You need to be logged in to leave comments. Login now