From e9a36d6cbe8fda2a7b17b1410eac7a7b92537337 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 30 Aug 2017 21:53:17 -0400 Subject: [PATCH] change ip block to 4 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 01fa2699f..d5f02db36 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(12, 0, 0), null, null); + await _unblockIpQueue.AddMessageAsync(message, null, new TimeSpan(4, 0, 0), null, null); } }