mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
重置系统任务增加异常处理
This commit is contained in:
parent
b685f33734
commit
ae63ee6729
@ -72,17 +72,19 @@ class Queue extends Controller
|
|||||||
/**
|
/**
|
||||||
* 重启系统任务
|
* 重启系统任务
|
||||||
* @auth true
|
* @auth true
|
||||||
* @throws \think\admin\Exception
|
|
||||||
* @throws \think\db\exception\DataNotFoundException
|
|
||||||
* @throws \think\db\exception\DbException
|
|
||||||
* @throws \think\db\exception\ModelNotFoundException
|
|
||||||
*/
|
*/
|
||||||
public function redo()
|
public function redo()
|
||||||
{
|
{
|
||||||
$data = $this->_vali(['code.require' => '任务编号不能为空!']);
|
try {
|
||||||
$queue = QueueService::instance()->initialize($data['code'])->reset();
|
$data = $this->_vali(['code.require' => '任务编号不能为空!']);
|
||||||
$queue->progress(1, '>>> 任务重置成功 <<<', 0.00);
|
$queue = QueueService::instance()->initialize($data['code'])->reset();
|
||||||
$this->success('任务重置成功!', $queue->code);
|
$queue->progress(1, '>>> 任务重置成功 <<<', 0.00);
|
||||||
|
$this->success('任务重置成功!', $queue->code);
|
||||||
|
} catch (HttpResponseException $exception) {
|
||||||
|
throw $exception;
|
||||||
|
} catch (\Exception $exception) {
|
||||||
|
$this->error($exception->getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user