mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-21 02:01:31 +00:00
dirnode.py: when doing deep-traverse, walk each directory in alphabetical order, to make things like 'manifest' more predictable
This commit is contained in:
parent
a18f8d4cc7
commit
1a741fdb03
@ -526,7 +526,7 @@ class NewDirectoryNode:
|
||||
# in the nodecache) seem to consume about 2000 bytes.
|
||||
dirkids = []
|
||||
filekids = []
|
||||
for name, (child, metadata) in children.iteritems():
|
||||
for name, (child, metadata) in sorted(children.iteritems()):
|
||||
verifier = child.get_verify_cap()
|
||||
# allow LIT files (for which verifier==None) to be processed
|
||||
if (verifier is not None) and (verifier in found):
|
||||
|
Loading…
x
Reference in New Issue
Block a user