From be2cfa44077c86e76fc0750900f94a96f1dd4463 Mon Sep 17 00:00:00 2001 From: midoks Date: Mon, 23 Oct 2023 16:19:42 +0800 Subject: [PATCH] Update index.py --- plugins/redis/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/redis/index.py b/plugins/redis/index.py index dadb83506..be820bac9 100755 --- a/plugins/redis/index.py +++ b/plugins/redis/index.py @@ -145,7 +145,7 @@ def redisOp(method): return 'ok' return data[1] - data = mw.execShell('systemctl ' + method + ' redis') + data = mw.execShell('systemctl ' + method + ' ' + getPluginName()) if data[1] == '': return 'ok' return data[1]