diff --git a/app/listener/CloudProduct.php b/app/listener/CloudProduct.php index aa8b68b0..096f008b 100644 --- a/app/listener/CloudProduct.php +++ b/app/listener/CloudProduct.php @@ -43,7 +43,7 @@ class CloudProduct $repo->update((int)$product['product_id'], ['status' => $status]); } - $cacheKey = sprintf(CloudProductModel::CacheKey, $product['mer_id']); + $cacheKey = sprintf(CloudProductModel::CacheKey, $cloudMerchant); $exist = $RedisCacheService->SISMEMBER($cacheKey, $product['product_id']); if ($status == 1 && !$exist) { $RedisCacheService->SADD($cacheKey, $product['product_id']);