We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm noticing a console log message reading:
[INFO] [05/23/2018 22:45:54.766] [rabbitmq-akka.actor.default-dispatcher-4] [akka://rabbitmq/user/$a/connection] akka://rabbitmq/user/$a/connection connected to amqp://admin@{my.host.name:1503}:5672//
This is incorrect. My application.conf has:
application.conf
connection { virtual-host = "/" hosts = ["my.host.name"] username = "admin" password = "whatever" port = 1503 ssl = false connection-timeout = 3s }
So it seems to me the correct URI for the connection should be: amqp://admin@my.host.name:1503/ rather than amqp://admin@{my.host.name:1503}:5672//
amqp://admin@my.host.name:1503/
amqp://admin@{my.host.name:1503}:5672//
I know port 1503 is non-standard, but there's a conflict on 5672.
The text was updated successfully, but these errors were encountered:
Hello @borice! I think a similar issue already exists: #137
Sorry, something went wrong.
No branches or pull requests
I'm noticing a console log message reading:
This is incorrect. My
application.conf
has:So it seems to me the correct URI for the connection should be:
amqp://admin@my.host.name:1503/
rather thanamqp://admin@{my.host.name:1503}:5672//
I know port 1503 is non-standard, but there's a conflict on 5672.
The text was updated successfully, but these errors were encountered: