]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
interfaces: allow URIs to be up to 300 chars long, we're just crossing over the edge now
authorBrian Warner <warner@allmydata.com>
Fri, 27 Apr 2007 01:08:29 +0000 (18:08 -0700)
committerBrian Warner <warner@allmydata.com>
Fri, 27 Apr 2007 01:08:29 +0000 (18:08 -0700)
src/allmydata/interfaces.py

index 855e85c9c49fe46699f9f5a917404210b68a7e3b..64918d4a9cd37bd7dbd6c294559777bd506b81fa 100644 (file)
@@ -12,7 +12,7 @@ Nodeid = StringConstraint(maxLength=20,
                           minLength=20) # binary format 20-byte SHA1 hash
 PBURL = StringConstraint(150)
 Verifierid = StringConstraint(20)
-URI = StringConstraint(200) # kind of arbitrary
+URI = StringConstraint(300) # kind of arbitrary
 MAX_BUCKETS = 200  # per peer
 ShareData = StringConstraint(100000)