diff --git a/app/admin/controller/Queue.php b/app/admin/controller/Queue.php index 22323bc8a..b140c8632 100644 --- a/app/admin/controller/Queue.php +++ b/app/admin/controller/Queue.php @@ -17,6 +17,7 @@ namespace app\admin\controller; use think\admin\Controller; use think\admin\service\ProcessService; +use think\admin\service\QueueService; use think\exception\HttpResponseException; /** @@ -108,22 +109,6 @@ class Queue extends Controller } } - /** - * 清理3天前的记录 - * @auth true - * @throws \think\db\exception\DbException - */ - public function clear() - { - $map = [['exec_time', '<', strtotime('-7days')]]; - $result = $this->app->db->name($this->table)->where($map)->delete(); - if ($result !== false) { - $this->success('成功清理7天前的任务记录!'); - } else { - $this->error('清理7天前的任务记录失败!'); - } - } - /** * WIN停止监听进程 * @auth true @@ -146,6 +131,20 @@ class Queue extends Controller } } + /** + * 创建记录清理任务 + * @auth true + * @throws \think\Exception + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException + */ + public function clear() + { + QueueService::instance()->addCleanQueue(); + $this->success('创建清理任务成功!'); + } + /** * 删除系统任务 * @auth true diff --git a/app/admin/view/queue/index.html b/app/admin/view/queue/index.html index c76fc4e8d..66c6af89a 100644 --- a/app/admin/view/queue/index.html +++ b/app/admin/view/queue/index.html @@ -93,7 +93,7 @@ {/if}