From 151b1bdd25a3369bf3fa8786cc083d6b074756d7 Mon Sep 17 00:00:00 2001 From: Anyon Date: Fri, 22 May 2020 13:55:15 +0800 Subject: [PATCH] Update Queue.php --- app/admin/controller/Queue.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 8e594a80e..37e355d46 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -46,11 +46,12 @@ class Queue extends Controller public function index() { if (AdminService::instance()->isSuper()) try { - $process = ProcessService::instance(); - if ($process->iswin() || empty($_SERVER['USER'])) { - $this->command = $process->think('xadmin:queue start'); + $this->process = ProcessService::instance(); + if ($this->process->iswin()) { + $this->command = $this->process->think('xadmin:queue start'); } else { - $this->command = "sudo -u {$_SERVER['USER']} {$process->think('xadmin:queue start')}"; + $user = $this->request->server('user', 'www'); + $this->command = "sudo -u {$user} {$this->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);