diff --git a/src/main.py b/src/main.py index 855821d..5079a8a 100644 --- a/src/main.py +++ b/src/main.py @@ -124,6 +124,9 @@ async def process_msg_v1( async def process_msg_v2(msg: ReportInQV2) -> StgReportCreate: + if msg.ts > 1735736400: + logger.warning(f"{msg.ts=} > 2025-01-01, {msg=}") + gmt = time.gmtime(msg.ts) human_time = time.strftime("%Y-%m-%d %H:%M:%S", gmt) human_time = datetime.fromtimestamp(msg.ts)