diff --git a/atom b/atom index 993c32c..b88bc65 100755 --- a/atom +++ b/atom @@ -712,19 +712,19 @@ do then concurrency="$fixed_workers" else - if [ -z "$quit" ] \ - && (( ! pause )) \ - && (( $(date +%s)-concurrencychange >= loadinterval )) - then - if (( concurrency > 1 )) \ - && (( load > maxload )) + if [ -z "$quit" ] \ + && (( ! pause )) \ + && (( $(date +%s)-concurrencychange >= loadinterval )) then - concurrencychange=$(date +%s) - (( --concurrency )) - elif (( load < maxload )) && (( active > concurrency - 1 )) - then - concurrencychange=$(date +%s) - (( ++concurrency )) + if (( concurrency > 1 )) \ + && (( load > maxload )) + then + concurrencychange=$(date +%s) + (( --concurrency )) + elif (( load < maxload )) && (( active > concurrency - 1 )) + then + concurrencychange=$(date +%s) + (( ++concurrency )) fi fi fi