This commit is contained in:
doms9 2025-09-05 10:37:22 -04:00
parent c8e49d9fbb
commit 00000d9077
7 changed files with 25 additions and 113 deletions

View file

@ -15,7 +15,7 @@ from .utils import (
TZ,
capture_req,
get_logger,
load_ts_cache,
load_cache,
now,
safe_process_event,
)
@ -269,7 +269,7 @@ async def main(client: httpx.AsyncClient) -> None:
cert = await get_cert(client)
cached_urls = load_ts_cache(CACHE_FILE, 14400)
cached_urls = load_cache(CACHE_FILE, exp=14400)
cached_count = len(cached_urls)
log.info(f"Collected {cached_count} event(s) from cache")