From 55101d845e7ee713ffb818e772a4fa179010f52d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Sun, 22 Mar 2020 22:20:39 +0800 Subject: [PATCH] Update Fans.php --- app/wechat/controller/Fans.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/wechat/controller/Fans.php b/app/wechat/controller/Fans.php index 281d2d210..b4048df32 100644 --- a/app/wechat/controller/Fans.php +++ b/app/wechat/controller/Fans.php @@ -74,8 +74,6 @@ class Fans extends Controller try { $code = sysqueue('同步微信用户数据', "xadmin:fansall", 1, [], 0); $this->success('创建任务成功,请等待完成!', $code); - } catch (HttpResponseException $exception) { - throw $exception; } catch (Exception $exception) { $queue = $exception->getData(); if (isset($queue['code'])) { @@ -83,6 +81,8 @@ class Fans extends Controller } else { $this->error($exception->getMessage()); } + } catch (HttpResponseException $exception) { + throw $exception; } catch (\Exception $exception) { $this->error("创建任务失败,{$exception->getMessage()}"); }