projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c5ceab
)
raise the limit on block hashes and share hashes from 30 to 2**20
author
Zooko O'Whielacronx
<zooko@zooko.com>
Mon, 30 Apr 2007 06:51:15 +0000
(23:51 -0700)
committer
Zooko O'Whielacronx
<zooko@zooko.com>
Mon, 30 Apr 2007 06:51:15 +0000
(23:51 -0700)
src/allmydata/interfaces.py
patch
|
blob
|
history
diff --git
a/src/allmydata/interfaces.py
b/src/allmydata/interfaces.py
index 64918d4a9cd37bd7dbd6c294559777bd506b81fa..f6a14e229aa2072ee3a7a16dc37e66f1a2ce187a 100644
(file)
--- a/
src/allmydata/interfaces.py
+++ b/
src/allmydata/interfaces.py
@@
-50,10
+50,10
@@
class RIBucketWriter(RemoteInterface):
"""
return None
- def put_block_hashes(blockhashes=ListOf(Hash)):
+ def put_block_hashes(blockhashes=ListOf(Hash
, maxLength=2**20
)):
return None
- def put_share_hashes(sharehashes=ListOf(TupleOf(int, Hash))):
+ def put_share_hashes(sharehashes=ListOf(TupleOf(int, Hash)
, maxLength=2**20
)):
return None
def close():