Increased max file size to 1GiB. Will review this again later.

This commit is contained in:
CalDescent 2021-06-23 08:33:53 +01:00
parent 3f20fadb81
commit cd3a1e0159

View File

@ -43,7 +43,7 @@ public class DataFile {
private static final Logger LOGGER = LogManager.getLogger(DataFile.class);
public static final long MAX_FILE_SIZE = 100 * 1024 * 1024; // 100MiB
public static final long MAX_FILE_SIZE = 1 * 1024 * 1024 * 1024; // 1GiB
public static final int CHUNK_SIZE = 1 * 1024 * 1024; // 1MiB
public static int SHORT_DIGEST_LENGTH = 8;