Skip to content

Commit

Permalink
Fix wrong minimum int prop
Browse files Browse the repository at this point in the history
Minor adjustments
  • Loading branch information
nickdnk committed Oct 25, 2024
1 parent cf33831 commit 600b8ae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"type": "object",
"description": "The user-defined service.",
"additionalProperties": false,
"required": [
"command"
],
"properties": {
"command": {
"description": "The command the service should execute. This can be any executable instruction that RoadRunner has access to on the server.",
Expand All @@ -31,7 +34,7 @@
"timeout_stop_sec": {
"description": "Timeout for the service stop operation. If it takes longer for this duration for the service to stop, it will be killed. Zero or empty defaults to 5.",
"type": "integer",
"minItems": 0,
"minimum": 0,
"default": 5
},
"process_num": {
Expand Down Expand Up @@ -61,10 +64,7 @@
"type": "boolean",
"default": false
}
},
"required": [
"command"
]
}
}
}
}

0 comments on commit 600b8ae

Please sign in to comment.