Fix issue in activating the VM disk while attaching disk

Currently <active> tag is passed within the disk element which is
incorrect. As a result, disk will remain inactive even though the
default option is true.
pull/18777/head
Nijin Ashok 8 years ago committed by Matt Clay
parent 80f622a075
commit b55c973444

@ -532,8 +532,8 @@ class VmsModule(BaseModule):
otypes.DiskAttachment(
disk=otypes.Disk(
id=disk_id,
active=disk.get('activate', True),
),
active=disk.get('activate', True),
interface=otypes.DiskInterface(
disk.get('interface', 'virtio')
),

Loading…
Cancel
Save