From feffc0f5eb4d710eb314577b6f159d607fd22646 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 22 May 2020 13:53:25 +0800 Subject: [PATCH] Update Queue.php --- app/admin/controller/Queue.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 019b31cfe..8e594a80e 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -47,10 +47,10 @@ class Queue extends Controller { if (AdminService::instance()->isSuper()) try { $process = ProcessService::instance(); - if ($process->iswin()) { + if ($process->iswin() || empty($_SERVER['USER'])) { $this->command = $process->think('xadmin:queue start'); } else { - $this->command = "sudo -u www {$process->think('xadmin:queue start')}"; + $this->command = "sudo -u {$_SERVER['USER']} {$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);