Skip to content

Commit 35ac91e

Browse files
authored
Change exception treatment on incremental snapshot wait (#12665)
1 parent ca46453 commit 35ac91e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/hypervisors/kvm/src/main/java/com/cloud/hypervisor/kvm/storage/KVMStorageProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2047,7 +2047,7 @@ private void waitForBackup(String vmName) throws CloudRuntimeException {
20472047
try {
20482048
Thread.sleep(10000);
20492049
} catch (InterruptedException e) {
2050-
throw new CloudRuntimeException(e);
2050+
logger.trace("Thread that was tracking the progress for backup of VM [{}] was interrupted. Ignoring.", vmName);
20512051
}
20522052
}
20532053

0 commit comments

Comments
 (0)