正在显示
2 个修改的文件
包含
3 行增加
和
3 行删除
@@ -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 | /** |
-
请 注册 或 登录 后发表评论