From 21403c33184b758a05f733cff6dfe8d45799a265 Mon Sep 17 00:00:00 2001 From: Anyon Date: Sun, 26 Apr 2020 10:50:46 +0800 Subject: [PATCH] Update Queue.php --- app/admin/controller/Queue.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 919b040ec..50997783c 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -16,6 +16,7 @@ namespace app\admin\controller; use think\admin\Controller; +use think\admin\service\AdminService; use think\admin\service\ProcessService; use think\admin\service\QueueService; use think\exception\HttpResponseException; @@ -44,7 +45,7 @@ class Queue extends Controller */ public function index() { - if ($this->app->session->get('user.username') === 'admin') try { + if (AdminService::instance()->isSuper()) try { $this->command = ProcessService::instance()->think('xtask:start'); $this->message = $this->app->console->call('xtask:state')->fetch(); $this->listen = preg_match('/process.*?\d+.*?running/', $this->message, $attr);