]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blobdiff - src/allmydata/mutable/layout.py
Change the maximum mutable share size to 69105 TB, and add a maximum-mutable-share...
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / mutable / layout.py
index e319e2c5d8568ace69985e987b65ef44b43ac524..33d647b9cca0019bb27e8b4cb11b937a33a5fa72 100644 (file)
@@ -71,6 +71,8 @@ HEADER_LENGTH = struct.calcsize(HEADER)
 OFFSETS = ">LLLLQQ"
 OFFSETS_LENGTH = struct.calcsize(OFFSETS)
 
+MAX_MUTABLE_SHARE_SIZE = 69105*1000*1000*1000*1000 # 69105 TB, kind of arbitrary
+
 
 # These are still used for some tests of SDMF files.
 def unpack_header(data):