1.优化websocket中的jackpot.hit

This commit is contained in:
2026-05-28 16:02:11 +08:00
parent cd19c499e2
commit 37d8459609

View File

@@ -447,6 +447,12 @@ final class GameBetSettleService
try {
$already = Redis::get($dedupKey);
if ($already !== false && $already !== null && $already !== '') {
Log::channel('ws')->info('jackpot.hit skipped (dedup exists)', [
'period_id' => $periodId,
'period_no' => $periodNo,
'result_number' => $resultNumber,
'hit_count' => count($jackpotHits),
]);
return;
}
} catch (Throwable) {