Increase the max default segment size.

This commit is contained in:
Itamar Turner-Trauring 2023-01-24 13:15:55 -05:00
parent d5f5d394dd
commit 6ccccde9e0
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ URI = StringConstraint(300) # kind of arbitrary
MAX_BUCKETS = 256 # per peer -- zfec offers at most 256 shares per file MAX_BUCKETS = 256 # per peer -- zfec offers at most 256 shares per file
DEFAULT_MAX_SEGMENT_SIZE = 128*1024 DEFAULT_MAX_SEGMENT_SIZE = 1024*1024
ShareData = StringConstraint(None) ShareData = StringConstraint(None)
URIExtensionData = StringConstraint(1000) URIExtensionData = StringConstraint(1000)