From 9e03124b9b4ee0c1af3e8105fcfba5c1492197bd Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 8 Sep 2017 11:43:09 -0400 Subject: [PATCH] block ip for 2 hours --- src/Core/Services/Implementations/AzureQueueBlockIpService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/Implementations/AzureQueueBlockIpService.cs b/src/Core/Services/Implementations/AzureQueueBlockIpService.cs index d5f02db360..770bf4623a 100644 --- a/src/Core/Services/Implementations/AzureQueueBlockIpService.cs +++ b/src/Core/Services/Implementations/AzureQueueBlockIpService.cs @@ -29,7 +29,7 @@ namespace Bit.Core.Services if(!permanentBlock) { - await _unblockIpQueue.AddMessageAsync(message, null, new TimeSpan(4, 0, 0), null, null); + await _unblockIpQueue.AddMessageAsync(message, null, new TimeSpan(2, 0, 0), null, null); } }