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 0ec0212 commit b17d859Copy full SHA for b17d859
lib/cuckoo/common/abstracts.py
@@ -440,7 +440,7 @@ def start(self, label):
440
snapshot = vm.snapshotLookupByName(vm_info.snapshot, flags=0)
441
self.vms[label].revertToSnapshot(snapshot, flags=0)
442
except libvirt.libvirtError as e:
443
- msg = f"Unable to restore snapshot {vm_info.snapshot} on virtual machine {label}"
+ msg = f"Unable to restore snapshot {vm_info.snapshot} on virtual machine {label}. Your snapshot MUST BE in running state!"
444
raise CuckooMachineError(msg) from e
445
finally:
446
self._disconnect(conn)
0 commit comments