Skip to content

Commit

Permalink
🎨 Update local cloud concurrent limit #11
Browse files Browse the repository at this point in the history
  • Loading branch information
88250 committed Dec 30, 2024
1 parent 228bf12 commit 9f35150
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cloud/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,8 @@ func (local *Local) GetConcurrentReqs() (ret int) {
if ret < 1 {
ret = 16
}
if ret > 32 {
ret = 32
if ret > 1024 {
ret = 1024
}
return
}
Expand Down

0 comments on commit 9f35150

Please sign in to comment.