From 9986ba18c2e576bc6867784138cfef7bc8f13178 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Thu, 10 Jul 2025 18:05:19 +0200 Subject: [PATCH] Fix cache dati x errore naming --- Lux.Data/Services/DataLayerServices.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lux.Data/Services/DataLayerServices.cs b/Lux.Data/Services/DataLayerServices.cs index 2a2663d3..47f788e5 100644 --- a/Lux.Data/Services/DataLayerServices.cs +++ b/Lux.Data/Services/DataLayerServices.cs @@ -55,7 +55,7 @@ namespace Lux.Data.Services sw.Start(); List? result = new List(); // cerco in redis... - string currKey = $"{redisBaseKey}:Offers:ALL"; + string currKey = $"{redisBaseKey}:Customers:ALL"; RedisValue rawData = redisDb.StringGet(currKey); if (rawData.HasValue) {