mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update Queue.php
This commit is contained in:
parent
7f17805dac
commit
53223d7e63
@ -44,15 +44,13 @@ class Queue extends Controller
|
|||||||
*/
|
*/
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
if ($this->app->session->get('user.username') === 'admin') {
|
if ($this->app->session->get('user.username') === 'admin') try {
|
||||||
try {
|
$this->command = ProcessService::instance()->think('xtask:start');
|
||||||
$this->command = ProcessService::instance()->think('xtask:start');
|
$this->message = $this->app->console->call('xtask:state')->fetch();
|
||||||
$this->message = $this->app->console->call('xtask:state')->fetch();
|
$this->listen = preg_match('/process.*?\d+.*?running/', $this->message, $attr);
|
||||||
$this->listen = preg_match('/process.*?\d+.*?running/', $this->message, $attr);
|
} catch (\Exception $exception) {
|
||||||
} catch (\Exception $exception) {
|
$this->listen = false;
|
||||||
$this->listen = false;
|
$this->message = $exception->getMessage();
|
||||||
$this->message = $exception->getMessage();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// 任务状态统计
|
// 任务状态统计
|
||||||
$this->total = ['dos' => 0, 'pre' => 0, 'oks' => 0, 'ers' => 0];
|
$this->total = ['dos' => 0, 'pre' => 0, 'oks' => 0, 'ers' => 0];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user