1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-09 12:07:20 +00:00

Use 8 as default value for git lfs concurrency (#32421)

This commit is contained in:
wxiaoguang
2024-11-05 21:10:57 +08:00
committed by GitHub
parent 24b83ff63e
commit 41b4ef825d
5 changed files with 9 additions and 6 deletions

View File

@ -68,8 +68,8 @@ func loadLFSFrom(rootCfg ConfigProvider) error {
}
if LFSClient.BatchOperationConcurrency < 1 {
// match the default git-lfs's `lfs.concurrenttransfers`
LFSClient.BatchOperationConcurrency = 3
// match the default git-lfs's `lfs.concurrenttransfers` https://github.com/git-lfs/git-lfs/blob/main/docs/man/git-lfs-config.adoc#upload-and-download-transfer-settings
LFSClient.BatchOperationConcurrency = 8
}
LFS.HTTPAuthExpiry = sec.Key("LFS_HTTP_AUTH_EXPIRY").MustDuration(24 * time.Hour)