Comment 13 for bug 1519502

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to python-openstackclient (master)

Reviewed: https://review.openstack.org/280535
Committed: https://git.openstack.org/cgit/openstack/python-openstackclient/commit/?id=ca34aa1587212ce5ac456a988fd6b442e646ed16
Submitter: Jenkins
Branch: master

commit ca34aa1587212ce5ac456a988fd6b442e646ed16
Author: Tang Chen <email address hidden>
Date: Tue Feb 16 14:33:31 2016 +0800

    Floating IP: Fix "ip floating list" in neutron network

    The implementation of "ip floating list" in the commit below
    is incorrect:

        Change-Id: I253f66f6bc64470e1a18ffea506048eb53f67d5c

    This is because the FloatingIP objects returned from Nova and
    Neutron network are different. They need different handling.

    This patch fixes this problem.

    The output for Neutron network would be:

    +--------------------------------------+---------------------+------------------+------+
    | ID | Floating IP Address | Fixed IP Address | Port |
    +--------------------------------------+---------------------+------------------+------+
    | 1976df86-e66a-4f96-81bd-c6ffee6407f1 | 172.24.4.3 | None | None |
    +--------------------------------------+---------------------+------------------+------+

    The output for Neutron network would be:

    +----+---------------------+------------------+-----------+--------+
    | ID | Floating IP Address | Fixed IP Address | Server ID | Pool |
    +----+---------------------+------------------+-----------+--------+
    | 1 | 172.24.4.1 | None | None | public |
    +----+---------------------+------------------+-----------+--------+

    Change-Id: I1295e922df695414511d9a07ca4a8e2428040064
    Partial-Bug: 1519502
    Related-to: blueprint neutron-client