Hi,
RabbitMq Version is : "RabbitMQ","3.6.6"
I am trying to upgrade the size of the queue , from x-max-length : 2 to from x-max-length : 7. When I try to set the x-max-length property using the following command
rabbitmqctl set_policy ash-pol "^test-ash-q$" '{"x-max-length":7}' --apply-to queues
I get the following error :
Error: Validation failed
[{<<"x-max-length">>,7}] are not recognised policy settings
Question : x-max-length is a queue declaration argument, Can I update it after the queue is created?
Question : What is the right approach to update the queue size?
Thanks.