Skip to content

Commit

Permalink
fix github actions warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Slach committed Jan 28, 2024
1 parent 5dda558 commit 3769b62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/backup/restore.go
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ func (b *Backuper) restoreDataRegular(ctx context.Context, backupName string, ta
// https://github.com/Altinity/clickhouse-backup/issues/529
for _, mutation := range table.Mutations {
if err := b.ch.ApplyMutation(restoreCtx, tablesForRestore[idx], mutation); err != nil {
log.Warnf("can't apply mutation %s for table `%s`.`%s` : %v", mutation.Command, tablesForRestore[idx].Database, tablesForRestore[i].Table, err)
log.Warnf("can't apply mutation %s for table `%s`.`%s` : %v", mutation.Command, tablesForRestore[idx].Database, tablesForRestore[idx].Table, err)
}
}
log.Info("done")
Expand Down

0 comments on commit 3769b62

Please sign in to comment.