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}"); } }