Issue #477
closedpython-kombu does not work with Qpid unless the user adjusts qpidd.conf
Description
Currently, the python-kombu behavior only works if the user does 1 of 2 things.
a) Disable authentication by putting 'auth=no' in qpidd.conf
b) Properly configures SASL by installing packages and configuring them
This is a barrier to using Pulp right away because the python-kombu does not align with the vanilla configuration Qpid has out of the box.
The root cause is that the Qpid transport only supports PLAIN authentication instead of ANONYMOUS. To fix this I propose the following:
1) Add ANONYMOUS as a default authentication type in addition to PLAIN in python-kombu
2) Test the adjusted python-kombu with a vanilla, unconfigured Qpid install
3) Update the tests to match this change
4) Update the Pulp docs some so they identify that the default setup uses ANONYMOUS auth, but that the user can also configure SASL for username/password auth.
+ This bug was cloned from Bugzilla Bug #1124589 +