diff --git a/app/api/services/base_service.py b/app/api/services/base_service.py index 570a027..b2d0b01 100644 --- a/app/api/services/base_service.py +++ b/app/api/services/base_service.py @@ -396,7 +396,7 @@ class BaseService: def write_cache_data(cacheSection, cacheId, cacheData): try: - cacheKey = cacheSection + '-' + cacheId + cacheKey = "MERMS:"+ cacheSection + ':' + cacheId 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,