Skip to content

Commit

Permalink
Merge pull request #5050 from sbueringer/pr-fix-clusterctl-backup-panic
Browse files Browse the repository at this point in the history
馃悰 fix panic in clusterctl backup
  • Loading branch information
k8s-ci-robot committed Aug 4, 2021
2 parents 2c5e689 + f88a761 commit aafd9fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/clusterctl/client/cluster/mover.go
Expand Up @@ -366,7 +366,7 @@ func (o *objectMover) backup(graph *objectGraph, directory string) error {
moveSequence := getMoveSequence(graph)

// Save all objects group by group
log.Info("Saving files to %s", directory)
log.Info(fmt.Sprintf("Saving files to %s", directory))
for groupIndex := 0; groupIndex < len(moveSequence.groups); groupIndex++ {
if err := o.backupGroup(moveSequence.getGroup(groupIndex), directory); err != nil {
return err
Expand Down

0 comments on commit aafd9fe

Please sign in to comment.