File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -357,6 +357,7 @@ Hooks allow for the configuration of custom actions related to the [lifecycle](r
357
357
* ** ` args ` ** (array of strings, OPTIONAL) with the same semantics as [ IEEE Std 1003.1-2001 ` execv ` 's * argv* ] [ ieee-1003.1-2001-xsh-exec ] .
358
358
* ** ` env ` ** (array of strings, OPTIONAL) with the same semantics as [ IEEE Std 1003.1-2001's ` environ ` ] [ ieee-1003.1-2001-xbd-c8.1 ] .
359
359
* ** ` timeout ` ** (int, OPTIONAL) is the number of seconds before aborting the hook.
360
+ If set, ` timeout ` MUST be greater than zero.
360
361
* ** ` poststart ` ** (array of objects, OPTIONAL) is an array of [ post-start hooks] ( #poststart ) .
361
362
Entries in the array have the same schema as pre-start entries.
362
363
* ** ` poststop ` ** (array of objects, OPTIONAL) is an array of [ post-stop hooks] ( #poststop ) .
Original file line number Diff line number Diff line change 91
91
"$ref" : " #/definitions/Env"
92
92
},
93
93
"timeout" : {
94
- "type" : " integer"
94
+ "type" : " integer" ,
95
+ "minimum" : 1
95
96
}
96
97
},
97
98
"required" : [
You can’t perform that action at this time.
0 commit comments