发送任务修正

This commit is contained in:
2026-01-12 10:07:13 +08:00
parent 8c1678eb0a
commit a7874901d8
4 changed files with 6 additions and 6 deletions

View File

@@ -30,7 +30,7 @@ class ExpiredRedis
if (strpos($key, $str) === 0) {
$id = str_replace($str, '', $key);
// 发给队列
Redis::send('send.mark.sms', '1,' . $id);
Redis::send('send.mark.sms', $id);
Log::info ("处理营销短信过期: {$id}\n{}");
}
// 微信模版
@@ -38,7 +38,7 @@ class ExpiredRedis
if (strpos($key, $str) === 0) {
$id = str_replace($str, '', $key);
// 发给队列
Redis::send('send.wechat.temp', '1,' . $id);
Redis::send('send.wechat.temp', $id);
Log::info ("处理微信模版消息过期: {$id}\n{}");
}