作者 邓超

1

@@ -12,7 +12,7 @@ include_once __DIR__."/../vendor/autoload.php"; @@ -12,7 +12,7 @@ include_once __DIR__."/../vendor/autoload.php";
12 function start(){ 12 function start(){
13 13
14 // 删除停止运行的值 14 // 删除停止运行的值
15 - redis()->delete(SYNC_RUNNING_REDIS_KEY); 15 + redis()->delete(SYNC_RUNNING_REDIS_KEY,'email_sync_stop_num');
16 16
17 // 进程管理器 17 // 进程管理器
18 $pm = new Process\Manager(); 18 $pm = new Process\Manager();
@@ -200,8 +200,8 @@ class RedisPool { @@ -200,8 +200,8 @@ class RedisPool {
200 * @author:dc 200 * @author:dc
201 * @time 2023/2/14 14:04 201 * @time 2023/2/14 14:04
202 */ 202 */
203 - public function delete($key):int {  
204 - return $this->getClient()->del($key); 203 + public function delete(...$key):int {
  204 + return $this->getClient()->del(...$key);
205 } 205 }
206 206
207 /** 207 /**