set PreHash threshold as 100MB

This commit is contained in:
tickstep 2024-03-03 16:23:03 +08:00
parent c86afbd764
commit a7034e300f

View File

@ -40,8 +40,8 @@ import (
) )
const ( const (
// DefaultCheckPreHashFileSize PreHash计算文件大小门限默认200MB以上文件才计算 // DefaultCheckPreHashFileSize PreHash计算文件大小门限默认100MB以上文件才计算
DefaultCheckPreHashFileSize = 10 * 1024 * 1024 DefaultCheckPreHashFileSize = 100 * 1024 * 1024
) )
type ( type (