cvmts: Bump up cpu.max period to 100000

(well, it DOES still work, but i imagine it's 100000 by default for a reason)
This commit is contained in:
modeco80
2024-11-02 06:33:31 -04:00
parent e780ecabf0
commit 4344b233bc

View File

@@ -23,7 +23,7 @@ function MakeValuesFromLimits(limits: CgroupLimits): CGroupValue[] {
option_array.push({ option_array.push({
controller: 'cpu', controller: 'cpu',
key: 'max', key: 'max',
value: `${(limits.cpuUsageMax / 100) * 10000} 10000` value: `${(limits.cpuUsageMax / 100) * 100000} 100000`
}); });
} }