Skip to content

Commit

Permalink
fix(do_backup): Fix TargetDuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Aug 18, 2022
1 parent fd2188a commit 6e2ad1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion do_backup/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (d *DoBackupProcess) TargetStart() {
}

func (d *DoBackupProcess) TargetFinish() {
d.BackupDuration = time.Since(d.targetStart)
d.TargetDuration = time.Since(d.targetStart)
}

func (d DoBackupProcess) BackupErr() {
Expand Down

0 comments on commit 6e2ad1a

Please sign in to comment.