From 3cb766a8ae0f444c379fe1462c572ef8aad75ed4 Mon Sep 17 00:00:00 2001 From: ZJY <764763903@qq.com> Date: Sat, 25 Sep 2021 21:05:11 +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 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/models/container.go b/models/container.go index b455efa..05858ac 100644 --- a/models/container.go +++ b/models/container.go @@ -497,6 +497,8 @@ func GetQlVersion(address string) (string, error) { v = "2.2" } else if strings.Contains(data, "v2.9") { v = "2.9" + } else { + v = "2.9" } return v, nil }