fix: Reduce the amount of threads for background compression to delay system saturation

This commit is contained in:
Carlos Solís 2025-02-28 08:50:25 -06:00
parent 569d903dea
commit 0ab935e412

View file

@ -52,7 +52,7 @@ grep -e "https://${site}/${avatarfolder}/" "${tmpfile}" | sed -e "s/.*${site}/${
while read -r i; do
for p in "${i}" "${i//-320/-80}" "${i//-320/-48}"; do
loop_1 "${p}" &
if [[ $(jobs -r -p | wc -l) -ge $(getconf _NPROCESSORS_ONLN) ]]; then
if [[ $(jobs -r -p | wc -l) -ge $(( $(getconf _NPROCESSORS_ONLN) / 2) ]]; then
wait -n
fi
done