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