adjust milb use of cache

This commit is contained in:
Chuck
2025-07-30 17:18:25 -05:00
parent ceb6d5fdac
commit a6f8237069
2 changed files with 6 additions and 2 deletions

View File

@@ -317,7 +317,7 @@ class BaseMiLBManager:
def _fetch_milb_api_data(self, use_cache: bool = True) -> Dict[str, Any]:
"""Fetch MiLB game data from the MLB Stats API."""
cache_key = "milb_api_data"
cache_key = "milb_live_api_data"
if use_cache:
cached_data = self.cache_manager.get_with_auto_strategy(cache_key)
if cached_data: