This is an automated email from the ASF dual-hosted git repository. djwang pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudberry-backup.git
commit 4a3cfd915c0d1751489b17ad2619263a7d040982 Author: woblerr <[email protected]> AuthorDate: Tue Apr 7 11:49:21 2026 +0300 Fix go vet issue. --- gpbackup_s3_plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpbackup_s3_plugin.go b/gpbackup_s3_plugin.go index c511dc1b..4060f640 100644 --- a/gpbackup_s3_plugin.go +++ b/gpbackup_s3_plugin.go @@ -113,7 +113,7 @@ func main() { err := app.Run(os.Args) if err != nil { - gplog.Error(err.Error()) + gplog.Error("%s", err.Error()) os.Exit(1) } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
