From: Brian Warner Date: Mon, 4 Dec 2006 12:14:31 +0000 (-0700) Subject: increase the maximum size of ShareData, since currently it is also a limit on uploade... X-Git-Tag: tahoe_v0.1.0-0-UNSTABLE~462 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=c6c0b1d6ff52a14c856d2600a8cc091fdb7d75ff;p=tahoe-lafs%2Ftahoe-lafs.git increase the maximum size of ShareData, since currently it is also a limit on uploaded file size --- diff --git a/allmydata/interfaces.py b/allmydata/interfaces.py index 672bd908..d7dffeac 100644 --- a/allmydata/interfaces.py +++ b/allmydata/interfaces.py @@ -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()