lizhengwei

jira:NYJ-1540 desc: handle replay_id

... ... @@ -62,11 +62,12 @@ class FootballReplayMatch:
"""
task_id = data.get("id")
match_id = data.get("match_id")
replay_id = replay_info.get('id')
matched_event_id = None
# 该时间段附近是否有进球事件
replay_info = data['replay']
replay_id = replay_info.get('id')
live_events = data['events']
goal_live_events = [e for e in live_events if str(e.get('type', '')) == '1']
... ...