--
You received this message because you are subscribed to the Google Groups "golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I have actually opened a thread in the rabbitmq-users list where i checked through wireshark what goes over the wire. It is actually pretty nice to see the flow.I have cross posted since i did not know if it is rabbitmq or my go code...it seems that i get the next message from the wire but the code does not get it at all...
I can see over the wire that i get messages from the server with Basic.Delivery.The messages do not pop up out of the channel that channel.Consume returns when creating the connection.I might read some where that channels do not play well with threads. I wonder if it is the same with goroutines, because i get the messages one one goroutine, send it to another via a channel where the messages get Ack or Nack.You said that your application has a similar pattern. Is the channel and Ack, Nack on the same goroutine? do you have code that i can look into?