From b28cf898b0705886a0302999ba1c9229b0761c6e Mon Sep 17 00:00:00 2001 From: Florent Poinsard Date: Wed, 2 Oct 2024 15:07:23 -0600 Subject: [PATCH] Fix fmt Signed-off-by: Florent Poinsard --- go/vt/mysqlctl/builtinbackupengine.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/vt/mysqlctl/builtinbackupengine.go b/go/vt/mysqlctl/builtinbackupengine.go index 56cb4e94d60..2bbec4abe96 100644 --- a/go/vt/mysqlctl/builtinbackupengine.go +++ b/go/vt/mysqlctl/builtinbackupengine.go @@ -1099,7 +1099,7 @@ func (be *BuiltinBackupEngine) restoreFile(ctx context.Context, params RestorePa }() br := newBackupReader(name, 0, timedSource) - go br.ReportProgress(ctx ,builtinBackupProgress, params.Logger) + go br.ReportProgress(ctx, builtinBackupProgress, params.Logger) var reader io.Reader = br // Open the destination file for writing.