From e4b01679edecac26be863808ecbcc413935e4405 Mon Sep 17 00:00:00 2001 From: ssongliu Date: Wed, 8 Jul 2026 16:43:29 +0800 Subject: [PATCH] fix: trim mariadb remote backup image tag --- agent/utils/mysql/client/remote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/utils/mysql/client/remote.go b/agent/utils/mysql/client/remote.go index ddce96c8a7e7..92818bf6c506 100644 --- a/agent/utils/mysql/client/remote.go +++ b/agent/utils/mysql/client/remote.go @@ -533,7 +533,7 @@ func loadImage(dbType, version string) (string, error) { func loadVersion(dbType string, version string) string { if dbType == "mariadb" { - return "mariadb:11.3.2 " + return "mariadb:11.3.2" } if strings.HasPrefix(version, "5.6") { return "mysql:5.6.51"