mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
Update Queue.php
This commit is contained in:
parent
108df7abce
commit
fe64a1399e
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user