** Changed in: nova
       Status: In Progress => Won't Fix

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to OpenStack Compute (nova).
https://bugs.launchpad.net/bugs/1407915

Title:
  libvirt: Leverage xpath  instead of  searching manully

Status in OpenStack Compute (nova):
  Won't Fix

Bug description:
  libvirt use xml format to create/describe  domain, add/delete devices.  There 
are some codes  hadle xml search by manul
  like:

  ret = doc.findall('./devices/disk')
      for node in ret:
          for child in node.getchildren():
              if child.tag == 'target':
                  if child.get('dev') == device:
                      return etree.tostring(node)
  that  can be handled by xpath like:

  node = doc.find("./devices/disk/target[@dev='%s'].." % device)
  if node is not None:
      return etree.tostring(node)

  More complicated code convert  xml to  config instance. then search manully, 
like: 
  from 
https://github.com/openstack/nova/blob/master/nova/virt/libvirt/driver.py#L2924
  to 
https://github.com/openstack/nova/blob/master/nova/virt/libvirt/driver.py#L2932

  This bug will track related issue.

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1407915/+subscriptions

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to     : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp

Reply via email to