We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4c479b commit 7fdc82bCopy full SHA for 7fdc82b
plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/storage/KVMPhysicalDisk.java
@@ -99,7 +99,7 @@ public static void checkQcow2File(String path) {
99
try {
100
Qcow2Inspector.validateQcow2File(path);
101
} catch (RuntimeException e) {
102
- throw new CloudRuntimeException("The volume file at path " + path + " is not a valid QCOW2");
+ throw new CloudRuntimeException("The volume file at path " + path + " is not a valid QCOW2. Error: " + e.getMessage());
103
}
104
105
0 commit comments