mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-31 08:25:35 +00:00
raise the limit on the number of hashes when retrieving them, too
This commit is contained in:
parent
8e4aa3e1fb
commit
a61178f425
@ -71,9 +71,9 @@ class RIBucketReader(RemoteInterface):
|
||||
"""
|
||||
return ShareData
|
||||
def get_block_hashes():
|
||||
return ListOf(Hash)
|
||||
return ListOf(Hash, maxLength=2**20)
|
||||
def get_share_hashes():
|
||||
return ListOf(TupleOf(int, Hash))
|
||||
return ListOf(TupleOf(int, Hash), maxLength=2**20)
|
||||
|
||||
class RIStorageServer(RemoteInterface):
|
||||
def allocate_buckets(verifierid=Verifierid,
|
||||
|
Loading…
x
Reference in New Issue
Block a user