Skip to content

Commit a147d82

Browse files
author
Martin Lercher
committed
BugFix - fixed OperationCanceledException in OutputHandlerTest
1 parent 2df0be6 commit a147d82

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/JsonRpc/OutputHandler.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ public OutputHandler(TextWriter output)
1919
_output = output;
2020
_queue = new BlockingCollection<object>();
2121
_cancel = new CancellationTokenSource();
22-
_thread = new Thread(ProcessOutputQueue)
23-
{
22+
_thread = new Thread(ProcessOutputQueue) {
2423
IsBackground = true
2524
};
2625
}

0 commit comments

Comments
 (0)