From cdaf64b41bcd35c916e5d0fba020017dfec8cfc2 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Thu, 4 Jul 2024 02:51:14 +0800 Subject: [PATCH] Update index.py --- plugins/mysql/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mysql/index.py b/plugins/mysql/index.py index a784703a2e..fc5b06170b 100755 --- a/plugins/mysql/index.py +++ b/plugins/mysql/index.py @@ -663,7 +663,7 @@ def my8cmd(version, method): def appCMD(version, action): makeInitRsaKey(version) - if float(version) >= 5.7: + if mw.inArray(mdb8, version): status = my8cmd(version, action) else: status = myOp(version, action)