##// 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 for topnode, dirs, files in tip.walk('/'):
112 for topnode, dirs, files in tip.walk('/'):
113 for f in files:
113 for f in files:
114 index_paths_.add(jn(repo.path, f.path))
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 except RepositoryError, e:
116 except RepositoryError, e:
120 log.debug(traceback.format_exc())
117 log.debug(traceback.format_exc())
General Comments 0
You need to be logged in to leave comments. Login now