diff options
author | Valery Piashchynski <[email protected]> | 2022-11-12 15:03:49 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-11-12 15:03:49 +0100 |
commit | 2df6445a694c7515165a9dd0a9d7754ca79bf0f1 (patch) | |
tree | b5803b2d6b34b0176612334f8fa96cf4d27e52b7 /schemas | |
parent | d7eb7d56a76c67413293325add0102e7eb9b977a (diff) |
pre-release
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'schemas')
-rw-r--r-- | schemas/config/2.0.schema.json | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/schemas/config/2.0.schema.json b/schemas/config/2.0.schema.json index 05d1add0..f40bbc55 100644 --- a/schemas/config/2.0.schema.json +++ b/schemas/config/2.0.schema.json @@ -1436,6 +1436,21 @@ "type": "string", "default": "amqp.default" }, + "exchange_durable": { + "description": "Durable exchange", + "type": "boolean", + "default": false + }, + "exchange_auto_deleted": { + "description": "Auto delete exchange", + "type": "boolean", + "default": false + }, + "queue_auto_deleted": { + "description": "Queue auto delete", + "type": "boolean", + "default": false + }, "exchange_type": { "description": "Exchange type", "type": "string", @@ -2135,12 +2150,17 @@ "default": 0 }, "allocate_timeout": { - "description": "Timeout for worker allocation. Zero means no limit", + "description": "Timeout for worker allocation. Zero means the default limit - 60s", + "$ref": "#/definitions/Duration", + "default": "60s" + }, + "reset_timeout": { + "description": "Timeout for the pool.Reset operation (./rr reset). Zero means the default limit - 60s", "$ref": "#/definitions/Duration", "default": "60s" }, "destroy_timeout": { - "description": "Timeout for worker destroying before process killing. Zero means no limit", + "description": "Timeout for worker destroying before process killing. Zero means the default limit - 60s", "$ref": "#/definitions/Duration", "default": "60s" }, |