Change exception treatment on incremental snapshot wait (#12665)

This commit is contained in:
João Jandre 2026-05-19 17:24:32 -03:00 committed by GitHub
parent ca4645320e
commit 35ac91e58b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2047,7 +2047,7 @@ public class KVMStorageProcessor implements StorageProcessor {
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
throw new CloudRuntimeException(e);
logger.trace("Thread that was tracking the progress for backup of VM [{}] was interrupted. Ignoring.", vmName);
}
}