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} -
+
{if isset($vo.loops_time) and $vo.loops_time > 0} {/if} diff --git a/app/wechat/command/Fans.php b/app/wechat/command/Fans.php index c84167b97..c8efbe054 100644 --- a/app/wechat/command/Fans.php +++ b/app/wechat/command/Fans.php @@ -56,7 +56,9 @@ class Fans extends Command $message .= $this->$fun(); } } - throw new \think\Exception($message, 3); + if (defined('WorkQueueCall')) { + throw new \think\Exception($message, 3); + } } /** diff --git a/vendor/services.php b/vendor/services.php index 440818fea..55b272a68 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\app\\Service',