From 93878f76f0b4e3f0a7e8782995e0db7bbbe379e8 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Sun, 24 Sep 2017 12:43:45 +0200 Subject: [PATCH] Reduce capacity --- src/Squidex.Infrastructure/Actors/Actor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Squidex.Infrastructure/Actors/Actor.cs b/src/Squidex.Infrastructure/Actors/Actor.cs index e60181c69..0b24c5526 100644 --- a/src/Squidex.Infrastructure/Actors/Actor.cs +++ b/src/Squidex.Infrastructure/Actors/Actor.cs @@ -33,7 +33,7 @@ namespace Squidex.Infrastructure.Actors protected Actor() { - block = new ActionBlock(Handle, new ExecutionDataflowBlockOptions { BoundedCapacity = 100 }); + block = new ActionBlock(Handle, new ExecutionDataflowBlockOptions { BoundedCapacity = 10 }); } public void Dispose()