-
Notifications
You must be signed in to change notification settings - Fork 42
Add debug info during the login step #301
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
Conversation
releated to #299 Signed-off-by: Gabriele Santomaggio <[email protected]>
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #301 +/- ##
==========================================
- Coverage 92.93% 92.86% -0.08%
==========================================
Files 112 112
Lines 9688 9689 +1
Branches 769 771 +2
==========================================
- Hits 9004 8998 -6
- Misses 523 528 +5
- Partials 161 163 +2
☔ View full report in Codecov by Sentry. |
@aeb-dev Please enable the logs in debug mode. |
Sorry, I could not allocate time yet to test it. I will let you know as soon as possible |
@aeb-dev Ok no problem. I tried to reproduce the issue with the configuration you provided and it works. conf: var config = new StreamSystemConfig()
{
UserName = "test",
Password = "test",
VirtualHost = "test",
AddressResolver = new AddressResolver(new DnsEndPoint("localhost", 30552)),
Endpoints = new List<EndPoint> { new DnsEndPoint("localhost", 30552) },
};
var system = await StreamSystem.Create(config, streamLogger).ConfigureAwait(false); Logs:
I'll be looking forward to your feedback since I can't reproduce it. |
I get this log: Extracted BrokerVersion version: 3.13.0 |
Okay, I found the problem. Before testing for consumer filters I had another rabbitmq installed so I had updated that to test it. So after update, the new rabbitmq was using the old data of old rabbitmq. You can produce the error with the following approach but I think this might not be a client problem: First deploy rabbitmq with: image: docker.io/rabbitmq:3.11.5 then update image: docker.io/rabbitmq:3.13-rc-management Then re-run the code from the issue. Note: If I do a clean install everything works fine |
After enabling, everything works as expected thanks |
Signed-off-by: Gabriele Santomaggio <[email protected]>
I added the feature flag info in case of problem. That would help in the same situation |
Signed-off-by: Gabriele Santomaggio <[email protected]>
Signed-off-by: Gabriele Santomaggio <[email protected]>
Releated to #299