Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

queues with unicode characters cannot be tested #106

Open
Talidorn opened this issue Aug 30, 2023 · 1 comment · May be fixed by #107
Open

queues with unicode characters cannot be tested #106

Talidorn opened this issue Aug 30, 2023 · 1 comment · May be fixed by #107

Comments

@Talidorn
Copy link

I'm unsure how to get around this issue. When the queue name contains - or .

/api/queues/%2F/some-queue or /ap/queues/%2F/some.queue as an example

when opening the URL I get:

RABBITMQ_QUEUE CRITICAL - Not Found : http://host:15672/api/queues/%2F/some-queue

If the queue doesn't have any special characters or has _ I get a good response as expected.

/api/queues/%2F/somequeue or /api/queues/%2F/some_queue

give me a good response:
RABBITMQ_QUEUE OK - messages OK (0) messages_ready OK (0) messages_unacknowledged OK (0) consumers OK (2) All queues under the thresholds | messages=0;; messages_ready=0;; messages_unacknowledged=0;; consumers=2;;

@Talidorn
Copy link
Author

Talidorn commented Aug 30, 2023

Close this issue. Perhaps change the scripts that have vhost = / to vhost = base ???

Turns out the queue / != %2F. We found that the / == base. So the query with base instead of %2F works with plugin. Went in and changed all the vhost=/ to vhost=base (as all of our queues are in base a.k.a. /) and I don't have to pass it in the command.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant