bkjones / pyrabbit

A Python module to communicate w/ the RabbitMQ HTTP Management API
http://pyrabbit.readthedocs.org
BSD 3-Clause "New" or "Revised" License
97 stars 86 forks source link

Breaking change? #50

Open jonapich opened 8 years ago

jonapich commented 8 years ago

So far I've been using the pypi version of pyrabbit, but we only had http endpoints.

I have an https endpoint to reach now, and I see that a PR was merged to this effect; so I pip-installed the current git revision and was able to use https.

However I had to specify the /api/ part of the path - looks like pyrabbit doesn't include this part of the path anymore. Previously I was able to create a client by specifying a server/port like this: myserver.mydomain.com:15672. This is no longer possible, but it starts working again with myserver.mydomain.com:15672/api/.

Is this an expected change?