mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-03 00:51:19 +00:00
immutable: handle another form of share corruption with LayoutInvalid exception instead of AssertionError
This commit is contained in:
parent
c84bb795f3
commit
206ab2b44d
@ -404,7 +404,12 @@ class ValidatedReadBucketProxy(log.PrefixingLogMixin):
|
||||
if self.share_hash_tree.needed_hashes(self.sharenum):
|
||||
# This will raise exception if the values being passed do not match the root
|
||||
# node of self.share_hash_tree.
|
||||
self.share_hash_tree.set_hashes(sharehashes)
|
||||
try:
|
||||
self.share_hash_tree.set_hashes(sharehashes)
|
||||
except IndexError, le:
|
||||
# Weird -- sharehashes contained index numbers outside of the range that fit
|
||||
# into this hash tree.
|
||||
raise BadOrMissingHash(le)
|
||||
|
||||
# To validate a block we need the root of the block hash tree, which is also one of
|
||||
# the leafs of the share hash tree, and is called "the share hash".
|
||||
|
Loading…
x
Reference in New Issue
Block a user