authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-03-21 19:56:47-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-03-21 19:56:47-07:00
log950359071bca707dbc9763f1bf3ebc79cd52ebca
treeb5abb15453a6812175a0d0c8410a09ead82842ae
parent2f4bbd6c637782eb985860255cf70011bbadd452

std.Build.Cache: bump manifest_file_size_max to 100M

Some users are hitting this limit. I think it's primarily due to not deduplicating (solved in the previous commit) but this seems like a better limit regardless.

1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Build/Cache.zig+1-1
......@@ -122,7 +122,7 @@ pub const HexDigest = [hex_digest_len]u8;
122122
123123/// This is currently just an arbitrary non-empty string that can't match another manifest line.
124124const manifest_header = "0";
125const manifest_file_size_max = 50 * 1024 * 1024;
125const manifest_file_size_max = 100 * 1024 * 1024;
126126
127127/// The type used for hashing file contents. Currently, this is SipHash128(1, 3), because it
128128/// provides enough collision resistance for the Manifest use cases, while being one of our