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
68d0c9cf59
commit
0d85f1f85b
@ -93,7 +93,8 @@ class Queue extends Controller
|
||||
public function start()
|
||||
{
|
||||
try {
|
||||
$this->success(nl2br($this->app->console->call('xtask:start')->fetch()));
|
||||
$message = nl2br($this->app->console->call('xtask:start')->fetch());
|
||||
stripos($message, '成功') !== false ? $this->success($message) : $this->error($message);
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (\Exception $e) {
|
||||
@ -108,7 +109,8 @@ class Queue extends Controller
|
||||
public function stop()
|
||||
{
|
||||
try {
|
||||
$this->success(nl2br($this->app->console->call('xtask:stop')->fetch()));
|
||||
$message = nl2br($this->app->console->call('xtask:stop')->fetch());
|
||||
stripos($message, '成功') !== false ? $this->success($message) : $this->error($message);
|
||||
} catch (HttpResponseException $exception) {
|
||||
throw $exception;
|
||||
} catch (\Exception $e) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user