1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-05 18:17:19 +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

@ -114,7 +114,7 @@ BATCH_SIZE = 0
assert.NoError(t, loadLFSFrom(cfg))
assert.EqualValues(t, 100, LFS.MaxBatchSize)
assert.EqualValues(t, 20, LFSClient.BatchSize)
assert.EqualValues(t, 3, LFSClient.BatchOperationConcurrency)
assert.EqualValues(t, 8, LFSClient.BatchOperationConcurrency)
iniStr = `
[lfs_client]