Loading cloudcontrol/node/hypervisor/domains/__init__.py +3 −1 Original line number Diff line number Diff line Loading @@ -149,7 +149,9 @@ class VirtualMachine(object): @title.setter def title(self, value): try: self.lv_dom.setMetadata(libvirt.VIR_DOMAIN_METADATA_TITLE, value, None, None) self.lv_dom.setMetadata(libvirt.VIR_DOMAIN_METADATA_TITLE, value, None, None, (libvirt.VIR_DOMAIN_AFFECT_LIVE | libvirt.VIR_DOMAIN_AFFECT_CONFIG)) except AttributeError: raise NotImplementedError('This hv doesn\'t handle VM titles') else: Loading Loading
cloudcontrol/node/hypervisor/domains/__init__.py +3 −1 Original line number Diff line number Diff line Loading @@ -149,7 +149,9 @@ class VirtualMachine(object): @title.setter def title(self, value): try: self.lv_dom.setMetadata(libvirt.VIR_DOMAIN_METADATA_TITLE, value, None, None) self.lv_dom.setMetadata(libvirt.VIR_DOMAIN_METADATA_TITLE, value, None, None, (libvirt.VIR_DOMAIN_AFFECT_LIVE | libvirt.VIR_DOMAIN_AFFECT_CONFIG)) except AttributeError: raise NotImplementedError('This hv doesn\'t handle VM titles') else: Loading