Update Queue.php

This commit is contained in:
Anyon 2020-05-22 13:53:25 +08:00
parent f075896234
commit feffc0f5eb

View File

@ -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);