--
You received this message because you are subscribed to the Google Groups "rabbitmq-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rabbitmq-user...@googlegroups.com.
To post to this group, send email to rabbitm...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
Hi Luke,
I think I found the issue ,RabbitMQ Rest URL doesnt work if the pagination parameter has not been passed , so only when pagination is set to true the regex worksRegardsNeha
Hi Neha,Thanks for reporting back. I'm surprised by what you have found but, sure enough, pagination is required by this code:Basically, the page/1 function is what does regex filtering, and you can see that it is only called when Pagination is true.Thanks again -Luke
On Monday, December 10, 2018 at 12:44:39 PM UTC-8, neha agarwal wrote:Hi Luke,I think I found the issue ,RabbitMQ Rest URL doesnt work if the pagination parameter has not been passed , so only when pagination is set to true the regex worksRegardsNehaOn Fri, Nov 2, 2018 at 9:05 PM Luke Bakken <lba...@pivotal.io> wrote:Hi Neha,
If I decode the regular expression in that URL, I get this value:
^.*-DWXENG2-.*$
There's no need to explicitly match the start and end of the string in this case.
If you want to list queues whose name contains the string 1501DEP, try this URL:
http://localhost:15672/api/queues/%2F/?name=-1501DEP-&use_regex=trueIf that does not work, please provide examples of the output in a file.
--