Skip to content

Commit

Permalink
br: fix backup stuck due to init pod schedule stuck
Browse files Browse the repository at this point in the history
  • Loading branch information
WangLe1321 committed Dec 13, 2023
1 parent 3863d3e commit 6ec83b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/backup/backup/backup_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ func (bm *backupManager) checkVolumeBackupInitializeJobRunning(backup *v1alpha1.
// all the volume snapshots has created
return nil
}
if !v1alpha1.IsVolumeBackupInitialized(backup) || v1alpha1.IsVolumeBackupInitializeFailed(backup) {
if v1alpha1.IsVolumeBackupInitializeFailed(backup) {
return nil
}

Expand Down

0 comments on commit 6ec83b0

Please sign in to comment.