diff options
author | Valery Piashchynski <[email protected]> | 2023-10-26 19:36:10 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-26 19:36:10 +0200 |
commit | b5acfd6212252c1977990e88f416b2d813939a03 (patch) | |
tree | f6f496f0709e571506017b5c9c193fdf87963558 /schemas/config | |
parent | 795d29f783f706b36ada5898aca99fcd7de16e7c (diff) | |
parent | 0f1df9129e5de8600464ab1ffd5fc41a9598bd93 (diff) |
[#1761]: release: v2023.3.3v2023.3.3
Diffstat (limited to 'schemas/config')
-rw-r--r-- | schemas/config/3.0.schema.json | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/schemas/config/3.0.schema.json b/schemas/config/3.0.schema.json index a7095962..f3cf837e 100644 --- a/schemas/config/3.0.schema.json +++ b/schemas/config/3.0.schema.json @@ -88,39 +88,6 @@ "server": { "type": "object", "properties": { - "after_init": { - "description": "Execute command or script after RR allocated a pool of workers. Command executed on the every pool allocation. For example, if you have 2 plugins: `http` and `grpc`, the `after_init` command would be fired twice.", - "type": "object", - "properties": { - "command": { - "description": "Command to execute. It can be script or binary", - "type": "string", - "examples": [ - "php not-worker.php", - "sh script.sh", - "start script.bat" - ] - }, - "exec_timeout": { - "description": "Script execute timeout", - "$ref": "#/definitions/Duration", - "default": "60s" - }, - "env": { - "description": "Environment variables for the worker processes", - "type": "array", - "items": { - "type": "object", - "patternProperties": { - "^[a-zA-Z0-9._-]+$": { - "type": "string" - } - }, - "additionalProperties": false - } - } - } - }, "on_init": { "description": "Execute command or script before RR starts allocating workers", "type": "object", |