diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-11-05 14:10:57 +0100 |
---|---|---|
committer | Otto Richter <git@otto.splvs.net> | 2024-12-06 00:17:57 +0100 |
commit | b84a59b3cd595937aea1fe54a6f7e758e9b42e8e (patch) | |
tree | 7b346a4d49d48eb57190fc25eb32856fc0f91a32 /modules/setting/lfs_test.go | |
parent | Make LFS http_client parallel within a batch. (#32369) (diff) | |
download | forgejo-b84a59b3cd595937aea1fe54a6f7e758e9b42e8e.tar.xz forgejo-b84a59b3cd595937aea1fe54a6f7e758e9b42e8e.zip |
Use 8 as default value for git lfs concurrency (#32421)
Diffstat (limited to '')
-rw-r--r-- | modules/setting/lfs_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/setting/lfs_test.go b/modules/setting/lfs_test.go index e546690b33..2b204282a8 100644 --- a/modules/setting/lfs_test.go +++ b/modules/setting/lfs_test.go @@ -115,7 +115,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] |