Merge remote-tracking branch 'origin/main' into feat/queue-based-graph-engine

This commit is contained in:
-LAN-
2025-09-06 16:05:13 +08:00
295 changed files with 769 additions and 793 deletions

View File

@ -42,7 +42,7 @@ def _get_last_update_timestamp(cache_key: str) -> Optional[datetime]:
@redis_fallback()
def _set_last_update_timestamp(cache_key: str, timestamp: datetime) -> None:
def _set_last_update_timestamp(cache_key: str, timestamp: datetime):
"""Set last update timestamp in Redis cache with TTL."""
redis_client.setex(cache_key, _CACHE_TTL_SECONDS, str(timestamp.timestamp()))