diff options
author | Linux Build Service Account <lnxbuild@localhost> | 2022-04-04 05:02:24 -0700 |
---|---|---|
committer | Linux Build Service Account <lnxbuild@localhost> | 2022-04-04 05:02:24 -0700 |
commit | 009a05ea8338c696c1406aa7dc1c03c9a0d7692c (patch) | |
tree | d9846ed8d6dedb39ad41a80cca41fc295d4724fe /cmd/multiproduct_kati/main.go | |
parent | 08f3accc31790ceff0d5652d539f4ae701033ded (diff) | |
parent | c868e14e34409b99d979a4104cb144437036960f (diff) |
Merge c868e14e34409b99d979a4104cb144437036960f on remote branch
Change-Id: I64a699c0d2ee3eab6ed105c6261cb1567a9dd347
Diffstat (limited to 'cmd/multiproduct_kati/main.go')
-rw-r--r-- | cmd/multiproduct_kati/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/multiproduct_kati/main.go b/cmd/multiproduct_kati/main.go index 55a5470e3..c7adbbd63 100644 --- a/cmd/multiproduct_kati/main.go +++ b/cmd/multiproduct_kati/main.go @@ -244,7 +244,7 @@ func main() { jobs = runtime.NumCPU() / 4 ramGb := int(config.TotalRAM() / 1024 / 1024 / 1024) - if ramJobs := ramGb / 25; ramGb > 0 && jobs > ramJobs { + if ramJobs := ramGb / 30; ramGb > 0 && jobs > ramJobs { jobs = ramJobs } |