Skip to content

Commit

Permalink
Also allow None for memory
Browse files Browse the repository at this point in the history
  • Loading branch information
jrdnbradford committed Nov 15, 2024
1 parent 5916407 commit cd53b41
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tljh/config_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@
"type": "object",
"additionalProperties": False,
"properties": {
"memory": {"type": "string"},
"memory": {
"anyOf": [
{"type": "string"},
{"type": "null"},
]
},
"cpu": {
"anyOf": [
{"type": "number", "minimum": 0},
Expand Down

0 comments on commit cd53b41

Please sign in to comment.