Skip to content

Commit 170b7f5

Browse files
rose-apekkah
authored andcommitted
Remove capacity bounding on WebSocketWriterPipeline (#199)
* Initialize the DocumentWriter so it indents in development and uses the MVC built in JsonSerializerSettings. (#115) * Add ComplexityConfiguration, EnableMetrics, SetFieldMiddleware to GraphQLHttpOptions (#116) * Revert "Add ComplexityConfiguration, EnableMetrics, SetFieldMiddleware to GraphQLHttpOptions (#116)" (#117) This reverts commit a4993c8. * Revert "Use MVC JsonSerializerSettings & Indent JSON in Development" (#118) * Revert "Revert "Add ComplexityConfiguration, EnableMetrics, SetFieldMiddleware to GraphQLHttpOptions (#116)" (#117)" This reverts commit 64a4658. * Revert "Add ComplexityConfiguration, EnableMetrics, SetFieldMiddleware to GraphQLHttpOptions (#116)" This reverts commit a4993c8. * Revert "Initialize the DocumentWriter so it indents in development and uses the MVC built in JsonSerializerSettings. (#115)" This reverts commit 00a67a1. * remove BoundedCapacity (defaults to Unbounded)
1 parent ec85aab commit 170b7f5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/Transports.Subscriptions.WebSockets/WebSocketWriterPipeline.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ private ITargetBlock<OperationMessage> CreateMessageWriter()
4343
var target = new ActionBlock<OperationMessage>(
4444
WriteMessageAsync, new ExecutionDataflowBlockOptions
4545
{
46-
BoundedCapacity = 1,
4746
MaxDegreeOfParallelism = 1,
4847
EnsureOrdered = true
4948
});

0 commit comments

Comments
 (0)