diff options
author | Valery Piashchynski <[email protected]> | 2022-12-01 12:30:30 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-12-01 12:30:30 +0100 |
commit | 79ec1832e5bc08663fe6853afefb8660b1d2e0ce (patch) | |
tree | a138af0c4b96d9d5fb37d9581c8f6375929bdc72 /schemas | |
parent | 6277d47ffe939b5cb21248eba876a7566048b15b (diff) |
chore: update .rr.yaml and schemas
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'schemas')
-rw-r--r-- | schemas/config/2.0.schema.json | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/schemas/config/2.0.schema.json b/schemas/config/2.0.schema.json index f40bbc55..8dc5f80f 100644 --- a/schemas/config/2.0.schema.json +++ b/schemas/config/2.0.schema.json @@ -1437,17 +1437,17 @@ "default": "amqp.default" }, "exchange_durable": { - "description": "Durable exchange", + "description": "Durable exchange (rabbitmq option: https://www.rabbitmq.com/tutorials/amqp-concepts.html#exchanges)", "type": "boolean", "default": false }, "exchange_auto_deleted": { - "description": "Auto delete exchange", + "description": "Auto-delete (exchange is deleted when last queue is unbound from it): https://www.rabbitmq.com/tutorials/amqp-concepts.html#exchanges", "type": "boolean", "default": false }, "queue_auto_deleted": { - "description": "Queue auto delete", + "description": "Auto-delete (queue that has had at least one consumer is deleted when last consumer unsubscribes)", "type": "boolean", "default": false }, @@ -1621,7 +1621,7 @@ "default": 10 }, "prefetch": { - "description": "Number of job to prefetch from the driver", + "description": "Number of job to prefetch from the driver until ACK/NACK", "type": "integer", "default": 100000 } @@ -1669,7 +1669,7 @@ "default": 10 }, "prefetch": { - "description": "Number of job to prefetch from the driver", + "description": "Number of job to prefetch from the driver until ACK/NACK", "type": "integer", "default": 100000 }, |