Browse Source

Reduce capacity

pull/131/head
Sebastian Stehle 9 years ago
parent
commit
93878f76f0
  1. 2
      src/Squidex.Infrastructure/Actors/Actor.cs

2
src/Squidex.Infrastructure/Actors/Actor.cs

@ -33,7 +33,7 @@ namespace Squidex.Infrastructure.Actors
protected Actor() protected Actor()
{ {
block = new ActionBlock<IMessage>(Handle, new ExecutionDataflowBlockOptions { BoundedCapacity = 100 }); block = new ActionBlock<IMessage>(Handle, new ExecutionDataflowBlockOptions { BoundedCapacity = 10 });
} }
public void Dispose() public void Dispose()

Loading…
Cancel
Save