Comment 7 for bug 1386236

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

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

commit a59e1a9c7e54efaadc39d366772972463855dfc7
Author: Nikola Dipanov <email address hidden>
Date: Tue Nov 18 20:45:28 2014 +0100

    Make Instance.save() update numa_topology

    This is needed so that we can actually update the given topology with
    the updated data after a successful claim.

    Deleting it will also be needed when we actually make the resize work
    properly for instances with NUMA topology, so we add it here as well.

    We do not expose the new InstanceNUMATopology methods as @remotable to
    avoid having to bump the object version thus making this an easier
    backport target. This is OK since they are only called from
    Instance.save() which is @remotable, and can be trivially made remotable
    should this be needed later (causing a version bump that need not be
    backported).

    Change-Id: I64ff2d00ca20bd065bb17ebaa9c40b64b8cbb817
    Partial-bug: #1386236