Comment 3 for bug 1355684

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to oslo.messaging (master)

Reviewed: https://review.openstack.org/131812
Committed: https://git.openstack.org/cgit/openstack/oslo.messaging/commit/?id=f74014a7dbec7ce3e28e8e1e1271a540c80bcce3
Submitter: Jenkins
Branch: master

commit f74014a7dbec7ce3e28e8e1e1271a540c80bcce3
Author: Oleksii Zamiatin <email address hidden>
Date: Wed Oct 29 18:14:00 2014 +0200

    Documentation anomaly in TransportURL parse classmethod

    The documentation for the classmethod `parse` states that

        The last parsed username and password will be propagated to the rest
        of hosts specified::
        user:pass@host1:port1,host2:port2
        [
        {"username": "user", "password": "pass", "host": "host1:port1"},
        {"username": "user", "password": "pass", "host": "host2:port2"}
        ]

    However, in practice one needs to specify the usernames and passwords
    individually with every host.

    DocImpact: Documentation needs to be changed due anomaly in TransportURL
    parse classmethod.

    Change-Id: I1a9e07e0380a0d6f7d00731df93c9ba01ae20e0e
    Closes-Bug: #1355684