Raise SSD review truth sync quotas
ober
8519c52695b1497c19b2ff4168cf2df2d03b1283
--- a/templates/ssd-review.ss +++ b/templates/ssd-review.ss @@ -3220,14 +3220,14 @@ " private const val MAX_HTTP_COMPRESSED_BYTES = 8L * 1024L * 1024L" " private const val MAX_REMOTE_ZIP_BYTES = 96L * 1024L * 1024L" " private const val MAX_ZIP_ENTRY_BYTES = 32L * 1024L * 1024L" - " private const val MAX_ZIP_TOTAL_BYTES = 128L * 1024L * 1024L" - " private const val MAX_ZIP_ENTRIES = 512" + " private const val MAX_ZIP_TOTAL_BYTES = 512L * 1024L * 1024L" + " private const val MAX_ZIP_ENTRIES = 8192" " private const val MAX_ZIP_DEPTH = 8" " private const val MAX_ZIP_PATH_CHARS = 240" " private const val MAX_COMPRESSION_RATIO = 100L" " private const val RATIO_FLOOR_BYTES = 64L * 1024L" - " private const val MAX_STORAGE_BYTES = 256L * 1024L * 1024L" - " private const val MAX_STORAGE_FILES = 4096" + " private const val MAX_STORAGE_BYTES = 512L * 1024L * 1024L" + " private const val MAX_STORAGE_FILES = 16384" " private const val MAX_LEARNED_EXAMPLES = 10000" " private const val MAX_JSONL_LINES = 51200" " private const val MAX_SOURCE_KEY_CHARS = 96" @@ -3839,7 +3839,7 @@ " while (true) {" " val entry = zip.nextEntry ?: break" " budget.entries += 1" - " if (budget.entries > MAX_ZIP_ENTRIES) throw IllegalStateException(\"ZIP entry-count limit exceeded\")" + " if (budget.entries > MAX_ZIP_ENTRIES) throw IllegalStateException(\"ZIP entry-count limit exceeded: ${budget.entries}/$MAX_ZIP_ENTRIES\")" " val name = entry.name" " if (name.length > MAX_ZIP_PATH_CHARS || !safeEntry(name)) {" " throw IllegalStateException(\"Unsafe ZIP entry\")"