update max_file_count_in_dir to 50000 (#1367)

This commit is contained in:
Xingjun.Wang
2025-06-11 14:26:03 +08:00
committed by suluyan
parent 3bd352981a
commit 7cf9e5cb10

View File

@@ -2232,7 +2232,7 @@ class UploadingCheck:
def __init__(
self,
max_file_count: int = 100_000,
max_file_count_in_dir: int = 10_000,
max_file_count_in_dir: int = 50_000,
max_file_size: int = 50 * 1024 ** 3,
size_threshold_to_enforce_lfs: int = 5 * 1024 * 1024,
normal_file_size_total_limit: int = 500 * 1024 * 1024,