From d53dd58c4d4942589aa6fc6d53e51f4d33754d56 Mon Sep 17 00:00:00 2001 From: Michal Otmianowski Date: Thu, 21 Aug 2025 11:39:08 +0200 Subject: [PATCH] remove unnecessary comments --- litellm/caching/s3_cache.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/litellm/caching/s3_cache.py b/litellm/caching/s3_cache.py index 929de6493cd..dbf5164b08b 100644 --- a/litellm/caching/s3_cache.py +++ b/litellm/caching/s3_cache.py @@ -98,7 +98,6 @@ class S3Cache(BaseCache): ContentDisposition=f'inline; filename="{key}.json"', ) except Exception as e: - # NON blocking - notify users S3 is throwing an exception print_verbose(f"S3 Caching: set_cache() - Got exception from S3: {e}") async def async_set_cache(self, key, value, **kwargs): @@ -112,7 +111,6 @@ class S3Cache(BaseCache): func = partial(self.set_cache, key, value, **kwargs) await loop.run_in_executor(None, func) except Exception as e: - # NON blocking - notify users S3 is throwing an exception verbose_logger.error(f"S3 Caching: async_set_cache() - Got exception from S3: {e}") def get_cache(self, key, **kwargs):