From 9522ddc08ffff8e31a85560286a41d1d49ccfc0d Mon Sep 17 00:00:00 2001 From: "zaccaria.majid" Date: Tue, 13 Jun 2023 12:08:15 +0200 Subject: [PATCH] ancora fix chiavi redis --- WebDoorCreator.API/Controllers/QueueController.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/WebDoorCreator.API/Controllers/QueueController.cs b/WebDoorCreator.API/Controllers/QueueController.cs index d62a2ec..2234c51 100644 --- a/WebDoorCreator.API/Controllers/QueueController.cs +++ b/WebDoorCreator.API/Controllers/QueueController.cs @@ -109,16 +109,16 @@ namespace WebDoorCreator.API.Controllers var doors2Del = await WDService.DoorGet2Del(); - if(doors2Del != null) + if (doors2Del != null) { - foreach(var item in doors2Del) + foreach (var item in doors2Del) { //RedisValue pattern = new RedisValue($"{Core.Constants.rKeyDoor}:{item.DoorId}"); await WDService.FlushCustomPattern($"Cache:Door:{item.DoorId}"); await WDService.FlushCustomPattern($"CalcRequests:CacheDDF:{item.DoorId}"); - await WDService.FlushCustomPattern($"CalcRequests:CacheDDF:{item.DoorId}"); - await WDService.FlushCustomPattern($"CalcRequests:CacheDDF:{item.DoorId}"); + await WDService.FlushCustomPattern($"CalcRequests:CacheSVG:{item.DoorId}"); + await WDService.FlushCustomPattern($"CalcRequests:Errors:{item.DoorId}"); } }