Update Queue.php

This commit is contained in:
邹景立 2021-10-16 16:53:15 +08:00
parent 108df7abce
commit fe64a1399e

View File

@ -74,14 +74,14 @@ class Queue extends Controller
public function start() public function start()
{ {
try { try {
$message = nl2br($this->app->console->call('xadmin:queue', ['start'])->fetch()); $message = $this->app->console->call('xadmin:queue', ['start'])->fetch();
if (stripos($message, 'daemons started successfully for pid')) { if (stripos($message, 'daemons started successfully for pid')) {
sysoplog('系统运维管理', '尝试启动后台服务主进程'); sysoplog('系统运维管理', '尝试启动后台服务主进程');
$this->success('后台服务主进程启动成功!'); $this->success('后台服务主进程启动成功!');
} elseif (stripos($message, 'daemons already exist for pid')) { } elseif (stripos($message, 'daemons already exist for pid')) {
$this->success('后台服务主进程已经存在!'); $this->success('后台服务主进程已经存在!');
} else { } else {
$this->error($message); $this->error(nl2br($message));
} }
} catch (HttpResponseException $exception) { } catch (HttpResponseException $exception) {
throw $exception; throw $exception;