发送任务修正
This commit is contained in:
@@ -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{}");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user