streadway / amqp

Go client for AMQP 0.9.1
http://godoc.org/github.com/streadway/amqp
BSD 2-Clause "Simplified" License
4.88k stars 621 forks source link

Dial multiple addr #341

Closed pathbox closed 5 years ago

pathbox commented 6 years ago

Hi, I have a question, how to dial multiple addr, yes, I can do it by my code, I just want to know if amqp support it

lukebakken commented 6 years ago

Have you looked at the code in this project yourself?

pathbox commented 6 years ago

@lukebakken Yes, as we konw, Dial(url string) , it can not be Dial(url []string{})

lukebakken commented 6 years ago

Great, you answered your own question. This project would welcome a PR that implements the feature if you would like to submit one with tests.

michaelklishin commented 5 years ago

A PR that adds support for multiple URIs/endpoints would be welcome. It is reasonably easy to do that without special support in this client.

HiranyaKavishani commented 3 years ago

Hi @michaelklishin, does the client now supports for multiple uris/endpoints?