Replies: 1 comment 1 reply
-
This is a question about Spring and how this Spring version configures stream connections, which is tricky compared to messaging protocols: a stream client can and will try to connect to multiple nodes. @acogoluegnes do you still have a link to the relevant Spring discussion? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
streaam-client version: 0.14.0
Create a RabbitListener and set it's property
autoStartup = "false"
, but startup the listener fail manually at later. Because the listener lost thehost
andport
attributes, and always try to connectlocalhost:5552
.define listener
startup listener manually
When I try to startup the listener, it would output the next errors (try to connect
localhost:5552
):I step into the code of
com.rabbitmq.stream.impl.Utils#coordinatorClientFactory()
, variableaddress
always is 'localhost:5552'.but the

environment
param is right:Reproduction steps
Expected behavior
startup listener succ
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions