diff --git a/app/main.py b/app/main.py index c80b34a..dc42824 100755 --- a/app/main.py +++ b/app/main.py @@ -4104,7 +4104,7 @@ async def get_insider_tracker(api_key: str = Security(get_api_key)): compressed_data = gzip.compress(data) redis_client.set(cache_key, compressed_data) - redis_client.expire(cache_key,3600*3600) + redis_client.expire(cache_key,5*60) return StreamingResponse( io.BytesIO(compressed_data),