We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f43a353 commit 17616a5Copy full SHA for 17616a5
src/SignalR/server/Core/src/StreamTracker.cs
@@ -78,7 +78,9 @@ private class ChannelConverter<T> : IStreamConverter
78
79
public ChannelConverter()
80
{
81
- _channel = Channel.CreateUnbounded<T>();
+ // TODO: Make this configurable or figure out a good limit
82
+ // https://github.com/aspnet/AspNetCore/issues/4399
83
+ _channel = Channel.CreateBounded<T>(10);
84
}
85
86
public Type GetItemType()
0 commit comments