Update Queue.php

This commit is contained in:
Anyon 2020-04-02 18:54:54 +08:00
parent 7f17805dac
commit 53223d7e63

View File

@ -44,8 +44,7 @@ class Queue extends Controller
*/
public function index()
{
if ($this->app->session->get('user.username') === 'admin') {
try {
if ($this->app->session->get('user.username') === 'admin') try {
$this->command = ProcessService::instance()->think('xtask:start');
$this->message = $this->app->console->call('xtask:state')->fetch();
$this->listen = preg_match('/process.*?\d+.*?running/', $this->message, $attr);
@ -53,7 +52,6 @@ class Queue extends Controller
$this->listen = false;
$this->message = $exception->getMessage();
}
}
// 任务状态统计
$this->total = ['dos' => 0, 'pre' => 0, 'oks' => 0, 'ers' => 0];
$query = $this->app->db->name($this->table)->field('status,count(1) count');