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 af36835 commit c71fef1Copy full SHA for c71fef1
src/JsonRpc/OutputHandler.cs
@@ -40,7 +40,7 @@ private void ProcessOutputQueue()
40
while (true)
41
{
42
if (_thread == null) return;
43
- if (_queue.TryTake(out var value, -1, token))
+ if (_queue.TryTake(out var value, Timeout.Infinite, token))
44
45
var content = JsonConvert.SerializeObject(value);
46
0 commit comments