-
Notifications
You must be signed in to change notification settings - Fork 100
Do not work with RabbitMQ #60
Comments
FYI, I did not created the topic. So I found this log entry in
but the driver did not returned any error. |
Thanks for the report! The existing logic wasn't propagating session errors during the attachment. I've opened #61 to resolve this. I confirmed this propagates the error. I was able to create a "queue-name" in RabbitMQ and attach using "/topic/queue-name" as the target address. It did hang when closing the sender due to the way RabbitMQ responds to the detach. I'll need to look into this a bit more to see if it's something that needs to be corrected in this library but don't have time at the moment. I hope to get to it soon though. |
@laibulle The necessary fixes for this library to work with RabbitMQ have been completed. Closing a link will hang until https://github.com/rabbitmq/rabbitmq-amqp1.0/issues/60 is resolved, but it can be worked around by applying a timeout to the close via the context argument of Please let me know if you run into any other problems. I'll leave this issue open at least until the RabbitMQ issue has been resolved. |
@vcabbage this is still don't work. (Rabbit 3.7.7) Test looks like:
Can you help? |
@Nyarum I tried to reproduce the issue with a RabbitMQ docker container with the AMQP 1.0 plugin enabled. I didn't get an error on Dockerfile:
Commands:
If you modify: Line 376 in 271d628
in your local copy of the lib to be:
It should print out the error information rather than the pointer, which may help track down the issue. |
Hello,
I try to get this package work with RabbitMQ and the AMQP 1 plugin. I can get it work with Go and Azure or C# and RabbitMQ but not with Go and RabbitMQ. Here is my code
The code is blocked at
session.NewSender
and moreover I can't see the connection in RabbitMQ admin.Did I miss something ?
Best regard
The text was updated successfully, but these errors were encountered: