]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
raise constraint on FURLs from 150 chars to 1000 chars
authorZooko O'Whielacronx <zooko@zooko.com>
Tue, 22 May 2007 20:59:17 +0000 (13:59 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Tue, 22 May 2007 20:59:17 +0000 (13:59 -0700)
src/allmydata/interfaces.py

index 440bd7e6df27e41f0c438459caaa2c89de987951..c71f5335343a52e5edb3003660053e57fceebf3c 100644 (file)
@@ -10,7 +10,7 @@ Hash = StringConstraint(maxLength=HASH_SIZE,
                         minLength=HASH_SIZE)# binary format 32-byte SHA256 hash
 Nodeid = StringConstraint(maxLength=20,
                           minLength=20) # binary format 20-byte SHA1 hash
-PBURL = StringConstraint(150)
+PBURL = StringConstraint(1000)
 Verifierid = StringConstraint(20)
 URI = StringConstraint(300) # kind of arbitrary
 MAX_BUCKETS = 200  # per peer