Update Queue.php

This commit is contained in:
Anyon 2022-06-27 09:51:49 +08:00
parent ba5afc2fa3
commit 4316de07a6

View File

@ -44,13 +44,11 @@ class Queue extends Controller
{
SystemQueue::mQuery()->layTable(function () {
$this->title = '系统任务管理';
$this->iswin = ProcessService::instance()->iswin();
$this->iswin = ProcessService::iswin();
if ($this->super = AdminService::isSuper()) {
$process = ProcessService::instance();
if ($process->iswin() || empty($_SERVER['USER'])) {
$this->command = $process->think('xadmin:queue start');
} else {
$this->command = "sudo -u {$_SERVER['USER']} {$process->think('xadmin:queue start')}";
$this->command = ProcessService::think('xadmin:queue start');
if (!ProcessService::iswin() && !empty($_SERVER['USER'])) {
$this->command = "sudo -u {$_SERVER['USER']} {$this->command}";
}
}
}, function (QueryHelper $query) {