From f075896234cdb5faee001a1741336b856ee73c68 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 22 May 2020 13:46:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BB=BB=E5=8A=A1=E6=89=A7?= =?UTF-8?q?=E8=A1=8C=E7=94=A8=E6=88=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/Queue.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 40690f548..019b31cfe 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -46,7 +46,12 @@ class Queue extends Controller public function index() { if (AdminService::instance()->isSuper()) try { - $this->command = ProcessService::instance()->think('xadmin:queue start'); + $process = ProcessService::instance(); + if ($process->iswin()) { + $this->command = $process->think('xadmin:queue start'); + } else { + $this->command = "sudo -u www {$process->think('xadmin:queue start')}"; + } $this->message = $this->app->console->call('xadmin:queue', ['status'])->fetch(); $this->listen = preg_match('/process.*?\d+.*?running/', $this->message, $attr); } catch (\Exception $exception) {