We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96a0937 commit 9fb5508Copy full SHA for 9fb5508
1 file changed
Open.ChannelExtensions.Tests/HangReproTest.cs
@@ -66,7 +66,7 @@ public static async Task MultipleBatchReadersDoNotHang()
66
await GetSource()
67
// Use bounded channel to avoid .NET runtime bug with unbounded channels.
68
// See: https://github.com/dotnet/runtime/issues/123544
69
- .ToChannel(capacity: 10000, singleReader: true)
+ .ToChannel(capacity: 10_000_000, singleReader: true)
70
.Batch(Random.Shared.Next(25, 50))
71
// WithTimeout is required to flush partial batches when source completes.
72
.WithTimeout(TimeSpan.FromMilliseconds(100))
0 commit comments