summaryrefslogtreecommitdiff
path: root/schemas/config
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2023-10-26 18:16:44 +0200
committerValery Piashchynski <[email protected]>2023-10-26 18:16:44 +0200
commit6eddf5596fe1c264d45ae40bace908f25340b281 (patch)
treeccf7bb371dc0e6db021dd44a2823dbcabcc50c09 /schemas/config
parentd9dd1aa785c314830f159bdfa1f7d2b89bfbd548 (diff)
release: v2023.3.3
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'schemas/config')
-rw-r--r--schemas/config/3.0.schema.json33
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",