mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
fix attaching disk
This commit is contained in:
parent
dc14cb4b3d
commit
ea3bbcb464
@ -2360,7 +2360,7 @@ public class LibvirtComputingResource extends ServerResourceBase implements Serv
|
|||||||
Iterator<Map.Entry<String, String>> itr = entrySet.iterator();
|
Iterator<Map.Entry<String, String>> itr = entrySet.iterator();
|
||||||
while (itr.hasNext()) {
|
while (itr.hasNext()) {
|
||||||
Map.Entry<String, String> entry = itr.next();
|
Map.Entry<String, String> entry = itr.next();
|
||||||
if (entry.getValue().equalsIgnoreCase(sourceFile)) {
|
if ((entry.getValue() != null) && (entry.getValue().equalsIgnoreCase(sourceFile))) {
|
||||||
diskDev = entry.getKey();
|
diskDev = entry.getKey();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -94,6 +94,8 @@ public class LibvirtDomainXMLParser extends LibvirtXMLParser {
|
|||||||
} else if (qName.equalsIgnoreCase("disk")) {
|
} else if (qName.equalsIgnoreCase("disk")) {
|
||||||
diskMaps.put(diskDev, diskFile);
|
diskMaps.put(diskDev, diskFile);
|
||||||
_disk = false;
|
_disk = false;
|
||||||
|
diskFile = null;
|
||||||
|
diskDev = null;
|
||||||
} else if (qName.equalsIgnoreCase("description")) {
|
} else if (qName.equalsIgnoreCase("description")) {
|
||||||
_desc = false;
|
_desc = false;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user