Also allow None for memory

This commit is contained in:
Jordan Bradford
2024-11-14 23:17:32 -05:00
parent 5916407a50
commit cd53b41b49

View File

@@ -80,7 +80,12 @@ config_schema = {
"type": "object",
"additionalProperties": False,
"properties": {
"memory": {"type": "string"},
"memory": {
"anyOf": [
{"type": "string"},
{"type": "null"},
]
},
"cpu": {
"anyOf": [
{"type": "number", "minimum": 0},