cache key

This commit is contained in:
CHIEFSOFT\ameye
2026-01-20 05:13:21 -05:00
parent 3f7639329d
commit e69359e7c3
+1 -1
View File
@@ -396,7 +396,7 @@ class BaseService:
def write_cache_data(cacheSection, cacheId, cacheData):
try:
cacheKey = "MERMS:"+ cacheSection + ':' + cacheId
cacheKey = "MERMS-"+ cacheSection + '-' + cacheId # note theh use of -
logger.info(f"write_cache_data () key {cacheKey}", exc_info=True)
# Define connection parameters and connect
r = redis.Redis(host=BaseService.CACHE_SERVER, port=BaseService.CACHE_PORT,