Skip to content

Commit e03b9c0

Browse files
committed
fix error in VeeamBackupProvider.java
1 parent 34bb9f2 commit e03b9c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/backup/veeam/src/main/java/org/apache/cloudstack/backup/VeeamBackupProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ public Backup createNewBackupEntryForRestorePoint(Backup.RestorePoint restorePoi
323323
backup.setName(backupManager.getBackupNameFromVM(vm));
324324
List<Volume> volumes = new ArrayList<>(volumeDao.findByInstance(vm.getId()));
325325
backup.setBackedUpVolumes(backupManager.createVolumeInfoFromVolumes(volumes));
326-
Map<String, String> details = backupManager.getVmDetailsForBackup(vm);
326+
Map<String, String> details = backupManager.getBackupDetailsFromVM(vm);
327327
backup.setDetails(details);
328328
backupDao.persist(backup);
329329
return backup;

0 commit comments

Comments
 (0)