trackBackupTask delegates task monitoring to the App
(upid string)
| 239 | |
| 240 | // trackBackupTask delegates task monitoring to the App |
| 241 | func (bm *BackupManager) trackBackupTask(upid string) { |
| 242 | bm.app.StartBackupMonitor(upid, bm.vm.Node, bm.vm.ID) |
| 243 | bm.updateInfoText(fmt.Sprintf("Backup started: %s", upid)) |
| 244 | } |
| 245 | |
| 246 | func (bm *BackupManager) restoreBackup() { |
| 247 | if isPending, pendingOperation := models.GlobalState.IsVMPending(bm.vm); isPending { |
nothing calls this directly
no test coverage detected