From 2fa22d3b42303dc70b37700c54725111e5e60aaa Mon Sep 17 00:00:00 2001 From: ZJY <764763903@qq.com> Date: Sat, 25 Sep 2021 21:05:25 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E8=B0=83=E8=AF=952.9.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- models/container.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/container.go b/models/container.go index 05858ac..7711e57 100644 --- a/models/container.go +++ b/models/container.go @@ -490,7 +490,7 @@ func GetQlVersion(address string) (string, error) { return "", err } v := "" - logs.Info(data) + //logs.Info(data) if strings.Contains(data, "v2.8") { v = "2.8" } else if strings.Contains(data, "v2.2") { @@ -498,7 +498,7 @@ func GetQlVersion(address string) (string, error) { } else if strings.Contains(data, "v2.9") { v = "2.9" } else { - v = "2.9" + v = "2.9.5" } return v, nil }