Comment 1 for bug 1362233

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

Reviewed: https://review.openstack.org/115255
Committed: https://git.openstack.org/cgit/openstack/nova/commit/?id=dbc46b99cc85402c087bb214c120bce2c65dfea9
Submitter: Jenkins
Branch: master

commit dbc46b99cc85402c087bb214c120bce2c65dfea9
Author: Roman Podoliaka <email address hidden>
Date: Tue Aug 19 14:05:50 2014 +0300

    Add _security_group_ensure_default() DBAPI method

    According to the convention we use for DB API methods, every public
    method should have a private counterpart. The difference between
    those two is that the latter accepts an optional 'session' argument,
    which makes it possible for the method to participate in the existing
    database transaction.

    security_group_ensure_default() was called inside instance_create()
    and thus implicitly created a new concurrent db transaction, which
    is now fixed by making a call to a private counterpart and passing
    the session instance.

    Closes-Bug: #1362233

    Change-Id: Ifa1b6430328fde1ab0984f726bd8392bbd3f7ee5