作者 邓超

x

... ... @@ -40,8 +40,13 @@ function start(){
// 启动一个协程
go(function () use ($id){
// 开始同步
(new \Service\SyncMail($id))->sync();
try{
// 开始同步
(new \Service\SyncMail($id))->sync();
}catch (Throwable $e){
logs('sync : '.$e->getMessage());
}
// 协程完成后执行的函数
co::defer(function () use ($id){
... ...