]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
increase the maximum size of ShareData, since currently it is also a limit on uploade...
authorBrian Warner <warner@lothar.com>
Mon, 4 Dec 2006 12:14:31 +0000 (05:14 -0700)
committerBrian Warner <warner@lothar.com>
Mon, 4 Dec 2006 12:14:31 +0000 (05:14 -0700)
allmydata/interfaces.py

index 672bd9084cb98ff63a0afbfaaebd15bef19e956f..d7dffeac530ae1a13e8f1c775c47229a1d55de40 100644 (file)
@@ -5,7 +5,7 @@ from foolscap import RemoteInterface
 Nodeid = StringConstraint(20) # binary format 20-byte SHA1 hash
 PBURL = StringConstraint(150)
 Verifierid = StringConstraint(20)
-ShareData = StringConstraint(20000)
+ShareData = StringConstraint(100000)
 # these four are here because Foolscap does not yet support the kind of
 # restriction I really want to apply to these.
 RIClient_ = Any()