mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-20 17:52:50 +00:00
upload.EncryptAnUploadable: use 50KiB read chunks (instead of 50KB), to match the chunksize requested by the upload helper
This commit is contained in:
parent
96ca6c2033
commit
b2d31f0a8a
@ -329,7 +329,7 @@ class EncryptAnUploadable:
|
||||
"""This is a wrapper that takes an IUploadable and provides
|
||||
IEncryptedUploadable."""
|
||||
implements(IEncryptedUploadable)
|
||||
CHUNKSIZE = 50*1000
|
||||
CHUNKSIZE = 50*1024
|
||||
|
||||
def __init__(self, original):
|
||||
self.original = IUploadable(original)
|
||||
|
Loading…
x
Reference in New Issue
Block a user