From ae63ee6729fb5e93225094abe57ef383e30db6d2 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 25 Mar 2020 10:24:32 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E7=BD=AE=E7=B3=BB=E7=BB=9F=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=A2=9E=E5=8A=A0=E5=BC=82=E5=B8=B8=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/Queue.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 4372d5f4d..51e0b6574 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -72,17 +72,19 @@ class Queue extends Controller /** * 重启系统任务 * @auth true - * @throws \think\admin\Exception - * @throws \think\db\exception\DataNotFoundException - * @throws \think\db\exception\DbException - * @throws \think\db\exception\ModelNotFoundException */ public function redo() { - $data = $this->_vali(['code.require' => '任务编号不能为空!']); - $queue = QueueService::instance()->initialize($data['code'])->reset(); - $queue->progress(1, '>>> 任务重置成功 <<<', 0.00); - $this->success('任务重置成功!', $queue->code); + try { + $data = $this->_vali(['code.require' => '任务编号不能为空!']); + $queue = QueueService::instance()->initialize($data['code'])->reset(); + $queue->progress(1, '>>> 任务重置成功 <<<', 0.00); + $this->success('任务重置成功!', $queue->code); + } catch (HttpResponseException $exception) { + throw $exception; + } catch (\Exception $exception) { + $this->error($exception->getMessage()); + } } /**