mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-23 01:08:53 +00:00
dirnode manifest/stats: process more than one LIT file per tree; we were accidentally ignoring all but the first
This commit is contained in:
@ -503,7 +503,8 @@ class NewDirectoryNode:
|
||||
dl = [limiter.add(walker.enter_directory, parent, children)]
|
||||
for name, (child, metadata) in children.iteritems():
|
||||
verifier = child.get_verifier()
|
||||
if verifier in found:
|
||||
# allow LIT files (for which verifier==None) to be processed
|
||||
if (verifier is not None) and (verifier in found):
|
||||
continue
|
||||
found.add(verifier)
|
||||
childpath = path + [name]
|
||||
|
Reference in New Issue
Block a user