作者 邓超

xxx

... ... @@ -25,7 +25,8 @@ class SendJob {
*/
private function isStop(){
// 运行超过1天的 停止
if($this->run_timer < (time()-86400)){
if($this->run_timer < (time()-43200)){
@posix_kill(getmypid(), SIGTERM);
return true;
}
return redis()->get('send_job_is_stop') == 'stop';
... ...
... ... @@ -26,7 +26,7 @@ function start(){
while (true){
// 运行超过1天的 停止
if($run_timer < (time()-86400)){
if($run_timer < (time()-43200)){
break;
}
... ... @@ -78,7 +78,7 @@ function start(){
// 循环阻塞
while (true){
// 运行超过1天的 停止
if($run_timer < (time()-86400)){
if($run_timer < (time()-43200)){
break;
}
// 需要同步的id
... ...