|
|
@@ -78,7 +78,9 @@ namespace Microsoft.AspNetCore.SignalR
|
|
|
|
|
|
public ChannelConverter()
|
|
|
{
|
|
|
- _channel = Channel.CreateUnbounded<T>();
|
|
|
+ // TODO: Make this configurable or figure out a good limit
|
|
|
+ // https://github.com/aspnet/AspNetCore/issues/4399
|
|
|
+ _channel = Channel.CreateBounded<T>(10);
|
|
|
}
|
|
|
|
|
|
public Type GetItemType()
|