Fix case where user's cgroup says it has 0 cpu cores (#13271)

This commit is contained in:
Nicolas Mowen 2024-08-22 07:06:26 -06:00 committed by GitHub
parent 1c7ee5f4e4
commit e01b6ee76b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@ function get_cpus() {
fi fi
local cpus local cpus
if [ -n "${quota}" ] && [ -n "${period}" ]; then if [ "${period}" != "0" ] && [ -n "${quota}" ] && [ -n "${period}" ]; then
cpus=$((quota / period)) cpus=$((quota / period))
if [ "$cpus" -eq 0 ]; then if [ "$cpus" -eq 0 ]; then
cpus=1 cpus=1