Closed jrdnbradford closed 1 week ago
Fixes #1012.
The config schema for cpu limits now accepts values such as 3, 3.5 and "None". Added minimums of 0 to prevent negative numerics.
cpu
3
3.5
"None"
minimum
0
Details on number can be found in the JSON Schema docs.
number
I went ahead and fixed the similar issue with the memory limit, which should also allow None.
None
Thanks!
Fixes #1012.
The config schema for
cpu
limits now accepts values such as3
,3.5
and"None"
. Addedminimum
s of0
to prevent negative numerics.Details on
number
can be found in the JSON Schema docs.