Merge "Use primitive object while create nova client Server object"

This commit is contained in:
Jenkins 2014-09-05 08:38:46 +00:00 committed by Gerrit Code Review
commit 762f22786b
1 changed files with 3 additions and 2 deletions

View File

@ -21,6 +21,7 @@ from nova.openstack.common import excutils
from powervc.nova.driver.compute import task_states from powervc.nova.driver.compute import task_states
from nova.compute import flavors from nova.compute import flavors
from novaclient.v1_1 import servers from novaclient.v1_1 import servers
from nova.objects import base as objects_base
LOG = logging.getLogger(__name__) LOG = logging.getLogger(__name__)
CONF = cfg.CONF CONF = cfg.CONF
@ -532,8 +533,8 @@ class PowerVCService(object):
This method handles converting a a hosting instance This method handles converting a a hosting instance
into an powerVC instance for nova client use. into an powerVC instance for nova client use.
""" """
instance_primitive = objects_base.obj_to_primitive(instance)
server = servers.Server(self._manager, instance) server = servers.Server(self._manager, instance_primitive)
# Check whether we can get the metadata from instance # Check whether we can get the metadata from instance
key = 'metadata' key = 'metadata'