From 539ae5772e7f8bda80f27c0b75b0010164da58fc Mon Sep 17 00:00:00 2001 From: Brian Wylie Date: Mon, 12 Aug 2024 12:13:58 -0600 Subject: [PATCH] changing redis connect failure into a critical --- src/sageworks/utils/sageworks_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sageworks/utils/sageworks_cache.py b/src/sageworks/utils/sageworks_cache.py index 416d73e36..c2dd94c22 100644 --- a/src/sageworks/utils/sageworks_cache.py +++ b/src/sageworks/utils/sageworks_cache.py @@ -22,7 +22,7 @@ def __init__(self, expire=None, prefix="", postfix=""): self._actual_cache = RedisCache(expire=expire, prefix=prefix, postfix=postfix) else: # If Redis isn't available, fall back to an In-Memory Cache - log.important("Redis connect failed, using In-Memory Cache...") + log.critical("Redis connect failed, using In-Memory Cache...") self._actual_cache = Cache(expire=expire, prefix=prefix, postfix=postfix) def set(self, key, value):