Comment 10 for bug 1215350

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

Reviewed: https://review.openstack.org/43305
Committed: http://github.com/openstack/neutron/commit/e43c5c1ea6441ad7d36e25bd283a5a580bf5cb09
Submitter: Jenkins
Branch: master

commit e43c5c1ea6441ad7d36e25bd283a5a580bf5cb09
Author: Eugene Nikanorov <email address hidden>
Date: Thu Aug 22 19:08:34 2013 +0400

    Fix port creation issue appeared with postgresql backend

    IPAllocationPool has relation to IPAvailabilityRange which is setup to
    load eagerly. Eager loading is implemented with left outer join which is
    incompatible with with_lockmode('update') on postgresql.
    The fix redefines eager loading with options(joinedload) making it use
    inner join.

    fixes bug 1215350

    Change-Id: I148d37f2a1c2a340327d36c240eb8173aee9219a