diff options
author | Nicolai Cornelis <[email protected]> | 2024-10-21 22:05:18 +0200 |
---|---|---|
committer | Nicolai Cornelis <[email protected]> | 2024-10-21 22:05:18 +0200 |
commit | 0f11fa4e01050f468487223c415f3d88d74477d8 (patch) | |
tree | f986ccdcedc980a1dcaecb0b9e9393d10e105481 /schemas | |
parent | 570c265c01a2a22b8cdf81312638dbf58a7e77ea (diff) |
Fix typo
Diffstat (limited to 'schemas')
-rw-r--r-- | schemas/config/3.0.schema.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/schemas/config/3.0.schema.json b/schemas/config/3.0.schema.json index 0362d741..65c4ec32 100644 --- a/schemas/config/3.0.schema.json +++ b/schemas/config/3.0.schema.json @@ -2648,7 +2648,7 @@ "description": "Command to use for the pool. If provided, this will override the value of server.command for the pool." }, "num_workers": { - "description": "The number of worker processes to start. Default/zero 0 means the number of logical CPUs.", + "description": "The number of worker processes to start. Default/zero means the number of logical CPUs.", "type": "integer", "minimum": 0, "default": 0 @@ -2666,22 +2666,22 @@ "default": 0 }, "allocate_timeout": { - "description": "Timeout for worker allocation. Default/zero 0 means 60s.", + "description": "Timeout for worker allocation. Default/zero means 60s.", "$ref": "#/definitions/Duration", "default": "60s" }, "reset_timeout": { - "description": "Timeout for the pool.Reset operation (./rr reset). Default/zero 0 means 60s.", + "description": "Timeout for the pool.Reset operation (./rr reset). Default/zero means 60s.", "$ref": "#/definitions/Duration", "default": "60s" }, "stream_timeout": { - "description": "Timeout for stream cancellation. Default/zero 0 means 60s.", + "description": "Timeout for stream cancellation. Default/zero means 60s.", "$ref": "#/definitions/Duration", "default": "60s" }, "destroy_timeout": { - "description": "Timeout when destroying a worker. If the worker has stopped within this timeout, its process will be killed. Default/zero 0 means 60s.", + "description": "Timeout when destroying a worker. If the worker has stopped within this timeout, its process will be killed. Default/zero means 60s.", "$ref": "#/definitions/Duration", "default": "60s" }, |