Comment 4 for bug 1659811

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to nova (stable/ocata)

Reviewed: https://review.openstack.org/430504
Committed: https://git.openstack.org/cgit/openstack/nova/commit/?id=1c992c7a172af0890c9fea147e018257ee018f2d
Submitter: Jenkins
Branch: stable/ocata

commit 1c992c7a172af0890c9fea147e018257ee018f2d
Author: Jordan Pittier <email address hidden>
Date: Fri Jan 27 15:22:25 2017 +0100

    Fix unspecified bahavior on GET /servers/detail?tenant_id=X as admin

    When an admin calls /v2.1/servers/detail?tenant_id=XX, then the
    `get_all` method of nova.compute.api.API is called with 2
    conflicting search options: {'tenant_id': XX, 'project_id': YY}.
    But because, latter on, in that `get_all` method we define a dict
    called filter_mapping, on which we iter upon, which value takes
    precedence depends on the order in which the dict is iterated upon.

    As the order in unpredictable and varies between Py2 and Py3, this
    is problematic. Especially, on Python 2 hash randomization is
    disabled by default but it's enabled by default on Py3 (unless
    the PYTHONHASHSEED env var is set to a fixed value) [0]

    The (unreliable) order we iterate on items of that `filter_mapping`
    dict is why the Tempest test_list_servers_by_admin_with_specified_tenant
    test randomly fails on Py35.

    This patch ensures that, if the all_tenants search option is
    not set, then the `tenant_id` search option is ignored. Note that
    this *is* the current behavior on Py27, as documented in lp:#1185290
    and tested by Tempest here [1].

    [0] https://docs.python.org/dev/using/cmdline.html#cmdoption-R
    [1] https://github.com/openstack/tempest/blob/fe1a8e289c2d79df29beaa6b3603afe5feb60fb3/tempest/api/compute/admin/test_servers.py#L96

    Change-Id: I1a74ef0f16da14444029c0f184b433df367ffb41
    Closes-Bug: #1659811
    (cherry picked from commit f702762934e0a46449091243a39ad5d57108b23f)