Удаление дебаг-информации

This commit is contained in:
2024-12-12 10:31:03 +03:00
parent fb8e97472f
commit 165a826cd0
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ def fetch_from_cache(cache_name: str, cache_config: dict):
if cached_value:
return cached_value
response = f(*args, **kwargs)
print("response=", response)
# print("response=", response)
cache_conn.set_value(cache_name, response, ttl)
return response